Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/document.py
diff options
context:
space:
mode:
authorAleksey Lim <alsroot@member.fsf.org>2009-03-12 19:33:04 (GMT)
committer Aleksey Lim <alsroot@member.fsf.org>2009-03-12 19:33:04 (GMT)
commita82ba3893ac6b249eefe5081b76cc3be92b428c5 (patch)
tree3f20d107898d157fb71d5aea8757011e195cdda5 /document.py
parent69d7246513000a88bd903f3cf16497c1d5f9ff91 (diff)
Remove map event issue by switching to {new|resume|save|share}_instance
Diffstat (limited to 'document.py')
-rw-r--r--document.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/document.py b/document.py
index d3ba739..6e1e979 100644
--- a/document.py
+++ b/document.py
@@ -78,9 +78,6 @@ def save(filepath):
zip.writestr('MANIFEST', json.dumps(cfg))
zip.close()
- import shutil
- shutil.copy(filepath, '/tmp/foo.zip')
-
def load(filepath):
zip = ZipFile(filepath, 'r')
cfg = json.loads(zip.read('MANIFEST'))