mirror of
https://github.com/evilhero/mylar
synced 2024-12-21 15:22:23 +00:00
FIX:(#1378) Failure to perform meta-tagging due to incorrect library reference, Updated CT to 1.20.1 to reflect the update
This commit is contained in:
parent
eea07cfc3f
commit
acf0f87a2b
3 changed files with 3 additions and 3 deletions
|
@ -1,5 +1,5 @@
|
|||
#!/usr/bin/env python
|
||||
from comictaggerlib.main import ctmain
|
||||
from lib.comictaggerlib.main import ctmain
|
||||
|
||||
if __name__ == '__main__':
|
||||
ctmain()
|
||||
|
|
|
@ -53,7 +53,7 @@ from issuestring import IssueString
|
|||
try:
|
||||
lib_path = os.path.join(ComicTaggerSettings.baseDir(), '..')
|
||||
sys.path.append(lib_path)
|
||||
import lib.requests as requests
|
||||
import requests
|
||||
except ImportError:
|
||||
print "Unable to use requests module. This is a CRITICAL error and ComicTagger cannot proceed. Exiting."
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
# This file should contan only these comments, and the line below.
|
||||
# Used by packaging makefiles and app
|
||||
version="1.20.0"
|
||||
version="1.20.1"
|
||||
fork="ninjas.walk.alone"
|
||||
fork_tag="SHURIKEN"
|
||||
|
|
Loading…
Reference in a new issue