os.getcwd() now returns a normal string (ie, unicode)

This commit is contained in:
Neal Norwitz 2007-08-26 23:37:53 +00:00
parent 19b4a272ea
commit d082b6eaac
1 changed files with 2 additions and 5 deletions

View File

@ -1365,11 +1365,8 @@ def main():
if not dir in sys.path:
sys.path.insert(0, dir)
else:
dir = str(os.getcwd()) ### os.getcwd() returning str8 but sys.path
### items are type 'str'. Remove the cast
### when fixed and assertion fails
assert isinstance(os.getcwd(), str8) ###
if not dir in sys.path:
dir = os.getcwd()
if dir not in sys.path:
sys.path.insert(0, dir)
# check the IDLE settings configuration (but command line overrides)
edit_start = idleConf.GetOption('main', 'General',