diff options
| author | Paweł Jastrzębski <[email protected]> | 2015-09-16 11:52:17 +0200 |
|---|---|---|
| committer | Paweł Jastrzębski <[email protected]> | 2015-09-16 11:52:17 +0200 |
| commit | b12825045bd1e5c65d6e0266ee6b70401eae53b8 (patch) | |
| tree | 7a7f7fb02b3d31afcfd42ecf1281bea06ee752c8 | |
| parent | KindleGen detection tweak (diff) | |
| download | kcc-b12825045bd1e5c65d6e0266ee6b70401eae53b8.tar.gz kcc-b12825045bd1e5c65d6e0266ee6b70401eae53b8.tar.bz2 kcc-b12825045bd1e5c65d6e0266ee6b70401eae53b8.zip | |
Fixed stupid typo
| -rwxr-xr-x | kcc/comic2ebook.py | 2 |
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 |