fixed pythonrc, thanks Vlad

This commit is contained in:
Massimo Di Pierro
2012-05-29 00:20:46 -05:00
parent ebcdbae047
commit 2eecd735da
2 changed files with 4 additions and 3 deletions
+1 -1
View File
@@ -1 +1 @@
Version 2.00.0 (2012-05-28 19:14:35) dev
Version 2.00.0 (2012-05-29 00:19:18) dev
+3 -2
View File
@@ -146,7 +146,8 @@ def exec_pythonrc():
try:
return execfile_getlocals(pythonrc)
except NameError:
return dict()
pass
return dict()
def run(
@@ -205,7 +206,7 @@ def run(
exec ('print %s()' % f, _env)
return
_env.update(exec_pythonrc() or {})
_env.update(exec_pythonrc())
if startfile:
try:
execfile(startfile, _env)