diff options
author | Paweł Jastrzębski <pawelj@iosphe.re> | 2015-10-20 09:54:22 +0200 |
---|---|---|
committer | Paweł Jastrzębski <pawelj@iosphe.re> | 2015-10-20 09:54:22 +0200 |
commit | f317a5c4301df504cec255b48e534cdca5aa4b8d (patch) | |
tree | 81768beae83d27e56989c3c2cb37c5801c4af88d /kcc-c2p.py | |
parent | Windows: Miscellaneous tweaks (diff) | |
download | kcc-f317a5c4301df504cec255b48e534cdca5aa4b8d.tar.gz kcc-f317a5c4301df504cec255b48e534cdca5aa4b8d.tar.bz2 kcc-f317a5c4301df504cec255b48e534cdca5aa4b8d.zip |
Overhaul of converter internals
Diffstat (limited to 'kcc-c2p.py')
-rwxr-xr-x | kcc-c2p.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/kcc-c2p.py b/kcc-c2p.py index 7709306..a1ded61 100755 --- a/kcc-c2p.py +++ b/kcc-c2p.py @@ -33,5 +33,4 @@ from kcc.comic2panel import main if __name__ == "__main__": freeze_support() print('comic2panel v' + __version__ + ' - Written by Ciro Mattia Gonano and Pawel Jastrzebski.') - main(sys.argv[1:]) - sys.exit(0) + sys.exit(main(sys.argv[1:])) |