about summary refs log tree commit diff
path: root/kcc-c2p.py
diff options
context:
space:
mode:
authorPaweł Jastrzębski <pawelj@iosphe.re>2015-02-21 18:30:54 +0100
committerPaweł Jastrzębski <pawelj@iosphe.re>2015-02-21 18:30:54 +0100
commit57b571b6c27a599840ba489e787bb3a3ca36929a (patch)
tree4b9596c8533f0c9df7d1166180e97b7fbd50a1f9 /kcc-c2p.py
parentFool proofing file sorting (diff)
downloadkcc-57b571b6c27a599840ba489e787bb3a3ca36929a.tar.gz
kcc-57b571b6c27a599840ba489e787bb3a3ca36929a.tar.bz2
kcc-57b571b6c27a599840ba489e787bb3a3ca36929a.zip
Fixed CLI version
Diffstat (limited to '')
-rwxr-xr-xkcc-c2p.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/kcc-c2p.py b/kcc-c2p.py
index 64477e3..4fe42fd 100755
--- a/kcc-c2p.py
+++ b/kcc-c2p.py
@@ -27,10 +27,11 @@ from kcc.shared import dependencyCheck
 dependencyCheck(1)
 
 from multiprocessing import freeze_support
+from kcc import __version__
 from kcc.comic2panel import main
 
 if __name__ == "__main__":
     freeze_support()
-    print(('comic2panel v%(__version__)s. Written by Ciro Mattia Gonano and Pawel Jastrzebski.' % globals()))
+    print('comic2panel v' + __version__ + ' - Written by Ciro Mattia Gonano and Pawel Jastrzebski.')
     main(sys.argv[1:])
     sys.exit(0)
\ No newline at end of file