mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2025-08-14 10:36:52 -07:00
Fix six not available before core
import
This commit is contained in:
parent
26008b3607
commit
248dd8609b
1 changed files with 5 additions and 1 deletions
|
@ -636,7 +636,11 @@ from core.autoProcess.autoProcessMusic import autoProcessMusic
|
|||
from core.autoProcess.autoProcessTV import autoProcessTV
|
||||
from core.nzbToMediaUserScript import external_script
|
||||
from core.nzbToMediaUtil import CharReplace, cleanDir, convert_to_ascii, extractFiles, getDirs, get_downloadInfo, get_nzoid, plex_update, update_downloadInfoStatus
|
||||
from libs.six import text_type
|
||||
|
||||
try:
|
||||
text_type = unicode
|
||||
except NameError:
|
||||
text_type = str
|
||||
|
||||
|
||||
# post-processing
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue