Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/document.py
diff options
context:
space:
mode:
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'))