about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPaweł Jastrzębski <[email protected]>2015-09-16 11:52:17 +0200
committerPaweł Jastrzębski <[email protected]>2015-09-16 11:52:17 +0200
commitb12825045bd1e5c65d6e0266ee6b70401eae53b8 (patch)
tree7a7f7fb02b3d31afcfd42ecf1281bea06ee752c8
parentKindleGen detection tweak (diff)
downloadkcc-b12825045bd1e5c65d6e0266ee6b70401eae53b8.tar.gz
kcc-b12825045bd1e5c65d6e0266ee6b70401eae53b8.tar.bz2
kcc-b12825045bd1e5c65d6e0266ee6b70401eae53b8.zip
Fixed stupid typo
-rwxr-xr-xkcc/comic2ebook.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/kcc/comic2ebook.py b/kcc/comic2ebook.py
index f777a92..bad1865 100755
--- a/kcc/comic2ebook.py
+++ b/kcc/comic2ebook.py
@@ -682,7 +682,7 @@ def getWorkFolder(afile):
             raise UserWarning("Failed to detect archive format.")
     newpath = mkdtemp('', 'KCC-')
     copytree(path, os.path.join(newpath, 'OEBPS', 'Images'))
-    rmtree(src, True)
+    rmtree(path, True)
     return newpath