Handle non-existant CWDs gracefully

This commit is contained in:
Martin Preisler 2013-02-19 21:11:28 +01:00 committed by Kim Silkebækken
parent e14f5e4208
commit ee51b8b76c
1 changed files with 11 additions and 3 deletions

View File

@ -52,9 +52,17 @@ def cwd(dir_shorten_len=None, dir_limit_depth=None):
'''
import re
try:
cwd = os.getcwdu()
except AttributeError:
cwd = os.getcwd()
try:
cwd = os.getcwdu()
except AttributeError:
cwd = os.getcwd()
except OSError as e:
if e.errno == 2:
# user most probably deleted the directory
# this happens when removing files from Mercurial repos for example
cwd = "[not found]"
else:
raise
home = os.environ.get('HOME')
if home:
cwd = re.sub('^' + re.escape(home), '~', cwd, 1)