diff options
| author | Paweł Jastrzębski <[email protected]> | 2017-01-20 09:44:21 +0100 |
|---|---|---|
| committer | Paweł Jastrzębski <[email protected]> | 2017-01-20 09:44:21 +0100 |
| commit | 45c1afcad4bff454f99d10e177ee862589bdc3e6 (patch) | |
| tree | 6d9290cc35a0f60d36d4c587c45369fc4cfc0d6f /kcc-c2p.py | |
| parent | Improved processing of credit pages (diff) | |
| download | kcc-45c1afcad4bff454f99d10e177ee862589bdc3e6.tar.gz kcc-45c1afcad4bff454f99d10e177ee862589bdc3e6.tar.bz2 kcc-45c1afcad4bff454f99d10e177ee862589bdc3e6.zip | |
Update build environment
Diffstat (limited to 'kcc-c2p.py')
| -rwxr-xr-x | kcc-c2p.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kcc-c2p.py b/kcc-c2p.py index adab111..bc6aa6b 100755 --- a/kcc-c2p.py +++ b/kcc-c2p.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 @@ -23,12 +23,12 @@ if sys.version_info[0] != 3: print('ERROR: This is Python 3 script!') exit(1) -from kcc.shared import dependencyCheck +from kindlecomicconverter.shared import dependencyCheck dependencyCheck(1) from multiprocessing import freeze_support -from kcc import __version__ -from kcc.comic2panel import main +from kindlecomicconverter import __version__ +from kindlecomicconverter.comic2panel import main if __name__ == "__main__": freeze_support() |