summaryrefslogtreecommitdiffstats
path: root/Lib/persist.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/persist.py')
-rwxr-xr-xLib/persist.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/persist.py b/Lib/persist.py
index bc91e4d..e503d95 100755
--- a/Lib/persist.py
+++ b/Lib/persist.py
@@ -62,7 +62,7 @@ def writedict(dict, fp):
sys.stdout = savestdout
def readdict(dict, fp):
- contents = fp.read() # Or: util.readopenfile(fp)
+ contents = fp.read()
globals = {}
exec(contents, globals)
top = globals['top']