about summary refs log tree commit diff
path: root/kindlecomicconverter
diff options
context:
space:
mode:
authorPaweł Jastrzębski <pawelj@iosphe.re>2019-03-08 08:16:53 +0100
committerPaweł Jastrzębski <pawelj@iosphe.re>2019-03-08 08:16:53 +0100
commit0b056a8fa854a8665d280013e0edc06c8dca77a9 (patch)
tree67c1c6006eb7fc046d428fae69140a0eb2a4b242 /kindlecomicconverter
parentTweaks for OSX binary (diff)
downloadkcc-0b056a8fa854a8665d280013e0edc06c8dca77a9.tar.gz
kcc-0b056a8fa854a8665d280013e0edc06c8dca77a9.tar.bz2
kcc-0b056a8fa854a8665d280013e0edc06c8dca77a9.zip
Stabilise multiprocessing on OSX
Diffstat (limited to 'kindlecomicconverter')
-rw-r--r--kindlecomicconverter/__init__.py2
-rw-r--r--kindlecomicconverter/shared.py8
2 files changed, 5 insertions, 5 deletions
diff --git a/kindlecomicconverter/__init__.py b/kindlecomicconverter/__init__.py
index fe7588f..c0f1b84 100644
--- a/kindlecomicconverter/__init__.py
+++ b/kindlecomicconverter/__init__.py
@@ -1,4 +1,4 @@
-__version__ = '5.5.0'
+__version__ = '5.5.1'
 __license__ = 'ISC'
 __copyright__ = '2012-2019, Ciro Mattia Gonano <ciromattia@gmail.com>, Pawel Jastrzebski <pawelj@iosphe.re>'
 __docformat__ = 'restructuredtext en'
diff --git a/kindlecomicconverter/shared.py b/kindlecomicconverter/shared.py
index 20308ac..d2a358f 100644
--- a/kindlecomicconverter/shared.py
+++ b/kindlecomicconverter/shared.py
@@ -87,12 +87,12 @@ def sanitizeTrace(traceback):
     return ''.join(format_tb(traceback))\
         .replace('C:/projects/kcc/', '')\
         .replace('c:/projects/kcc/', '')\
-        .replace('C:/python36-x64/', '')\
-        .replace('c:/python36-x64/', '')\
+        .replace('C:/python37-x64/', '')\
+        .replace('c:/python37-x64/', '')\
         .replace('C:\\projects\\kcc\\', '')\
         .replace('c:\\projects\\kcc\\', '')\
-        .replace('C:\\python36-x64\\', '')\
-        .replace('c:\\python36-x64\\', '')
+        .replace('C:\\python37-x64\\', '')\
+        .replace('c:\\python37-x64\\', '')
 
 
 # noinspection PyUnresolvedReferences