diff options
author | Paweł Jastrzębski <pawelj@iosphe.re> | 2017-01-20 09:44:21 +0100 |
---|---|---|
committer | Paweł Jastrzębski <pawelj@iosphe.re> | 2017-01-20 09:44:21 +0100 |
commit | 45c1afcad4bff454f99d10e177ee862589bdc3e6 (patch) | |
tree | 6d9290cc35a0f60d36d4c587c45369fc4cfc0d6f /kcc.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.py')
-rwxr-xr-x | kcc.py | 8 |
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 <ciromattia@gmail.com> -# Copyright (c) 2013-2016 Pawel Jastrzebski <pawelj@iosphe.re> +# Copyright (c) 2013-2017 Pawel Jastrzebski <pawelj@iosphe.re> # # 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() |