mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2025-08-21 05:43:16 -07:00
Added in code to place single files or groups of files that are not contained in a folder into there own folder or grouped folder based on parsing of the filenames to extract details required to determin correcting folder naming.
This commit is contained in:
parent
c8ddbc4836
commit
f7e56b979b
258 changed files with 73367 additions and 174 deletions
|
@ -2,7 +2,7 @@ import os
|
|||
import time
|
||||
import nzbtomedia
|
||||
import requests
|
||||
from nzbtomedia.nzbToMediaUtil import convert_to_ascii, joinPath
|
||||
from nzbtomedia.nzbToMediaUtil import convert_to_ascii
|
||||
from nzbtomedia import logger
|
||||
|
||||
class autoProcessComics:
|
||||
|
@ -39,7 +39,7 @@ class autoProcessComics:
|
|||
params = {}
|
||||
params['nzb_folder'] = dirName
|
||||
if remote_path:
|
||||
params['nzb_folder'] = joinPath(remote_path, os.path.basename(dirName))
|
||||
params['nzb_folder'] = os.path.join(remote_path, os.path.basename(dirName))
|
||||
|
||||
if inputName != None:
|
||||
params['nzb_name'] = inputName
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue