mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2025-07-10 15:32:35 -07:00
Fix missed commits during refactor
This commit is contained in:
parent
832ef32340
commit
9f7f28d54e
2 changed files with 9 additions and 2 deletions
|
@ -15,8 +15,9 @@ import core
|
|||
from core import logger, main_db
|
||||
from core.auto_process import comics, games, movies, music, tv
|
||||
from core.auto_process.common import ProcessResult
|
||||
from core.plugins.plex import plex_update
|
||||
from core.user_scripts import external_script
|
||||
from core.utils import char_replace, convert_to_ascii, plex_update, replace_links
|
||||
from core.utils import char_replace, convert_to_ascii, replace_links
|
||||
from six import text_type
|
||||
|
||||
|
||||
|
|
|
@ -637,8 +637,14 @@ import core
|
|||
from core import logger, main_db
|
||||
from core.auto_process import comics, games, movies, music, tv
|
||||
from core.auto_process.common import ProcessResult
|
||||
from core.plugins.downloaders.nzb.utils import get_nzoid
|
||||
from core.plugins.plex import plex_update
|
||||
from core.user_scripts import external_script
|
||||
from core.utils import char_replace, clean_dir, convert_to_ascii, extract_files, get_dirs, get_download_info, get_nzoid, plex_update, update_download_info_status
|
||||
from core.utils import (
|
||||
char_replace, clean_dir, convert_to_ascii,
|
||||
extract_files, get_dirs, get_download_info,
|
||||
update_download_info_status,
|
||||
)
|
||||
|
||||
try:
|
||||
text_type = unicode
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue