Separate comicapi into it's own package
Add support for tar files
Insert standard gitignore
Use suggested _version from setuptools-scm
Cleanup setup.py
Fix formatting in the rename template help
Script raised an unhandled exception: local variable 'fmt_str' referenced before assignment
Traceback (most recent call last):
File "/volume1/@appstore/comictagger/comictaggerlib/options.py", line 233, in launch_script
script.main()
File "/volume1/@appstore/comictagger/scripts/move2folder.py", line 90, in main
print >> sys.stderr, fmt_str.format("")
UnboundLocalError: local variable 'fmt_str' referenced before assignment
Script raised an unhandled exception: coercing to Unicode: need string or buffer, NoneType found
Traceback (most recent call last):
File "/root/comictagger/comictaggerlib/options.py", line 233, in launch_script
script.main()
File "scripts/move2folder.py", line 80, in main
ca = ComicArchive(filename, settings.rar_exe_path)
File "/root/comictagger/comicapi/comicarchive.py", line 648, in __init__
with open(fname, 'rb') as fd:
TypeError: coercing to Unicode: need string or buffer, NoneType found
- `autopep8 -aa` for general cleanup;
- Changed order of imports, they should be ordered into 3 groups:
1. standard library imports;
2. 3rd party packages;
3. project imports.
- I commented various imports that were reported as unused by my IDE.
If everything goes fine we can consider to delete them;
- The Apache license disclaimers are now comments since triple-quotes
should be used only for docstrings;
- Fix - `utils.centerWindowOnParent` did not resolve, changed to
`centerWindowOnParent`