about summary refs log tree commit diff
path: root/kcc.py
diff options
context:
space:
mode:
authorPaweł Jastrzębski <[email protected]>2017-02-12 09:13:12 +0100
committerGitHub <[email protected]>2017-02-12 09:13:12 +0100
commit4647fd1f1dc7258a13e02591296af010af8c79e3 (patch)
treea95a0f3f36392b5bc57bed2e0557501b2421996b /kcc.py
parentMerge pull request #216 from ciromattia/dev (diff)
parentUpdated README + version bump (diff)
downloadkcc-4647fd1f1dc7258a13e02591296af010af8c79e3.tar.gz
kcc-4647fd1f1dc7258a13e02591296af010af8c79e3.tar.bz2
kcc-4647fd1f1dc7258a13e02591296af010af8c79e3.zip
Merge pull request #224 from ciromattia/dev
5.3.0
Diffstat (limited to 'kcc.py')
-rwxr-xr-xkcc.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/kcc.py b/kcc.py
index 28045fc..a93e48f 100755
--- a/kcc.py
+++ b/kcc.py
@@ -2,7 +2,7 @@
 # -*- coding: utf-8 -*-
 #
 # Copyright (c) 2012-2014 Ciro Mattia Gonano <[email protected]>
-# Copyright (c) 2013-2016 Pawel Jastrzebski <[email protected]>
+# Copyright (c) 2013-2017 Pawel Jastrzebski <[email protected]>
 #
 # Permission to use, copy, modify, and/or distribute this software for
 # any purpose with or without fee is hereby granted, provided that the
@@ -59,15 +59,15 @@ elif sys.platform.startswith('win'):
 # Load additional Sentry configuration
 if getattr(sys, 'frozen', False):
     try:
-        import kcc.sentry
+        import kindlecomicconverter.sentry
     except:
         pass
 
-from kcc.shared import dependencyCheck
+from kindlecomicconverter.shared import dependencyCheck
 dependencyCheck(3)
 
 from multiprocessing import freeze_support
-from kcc import KCC_gui
+from kindlecomicconverter import KCC_gui
 
 if __name__ == "__main__":
     freeze_support()