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
|
@ -3,7 +3,7 @@ import time
|
|||
import requests
|
||||
import nzbtomedia
|
||||
|
||||
from nzbtomedia.nzbToMediaUtil import convert_to_ascii, joinPath
|
||||
from nzbtomedia.nzbToMediaUtil import convert_to_ascii
|
||||
from nzbtomedia import logger
|
||||
|
||||
class autoProcessMusic:
|
||||
|
@ -75,7 +75,7 @@ class autoProcessMusic:
|
|||
|
||||
params['dir'] = os.path.dirname(dirName)
|
||||
if remote_path:
|
||||
params['dir'] = joinPath(remote_path, os.path.basename(os.path.dirname(dirName)))
|
||||
params['dir'] = os.path.join(remote_path, os.path.basename(os.path.dirname(dirName)))
|
||||
|
||||
release_status = self.get_status(url, apikey, dirName)
|
||||
if not release_status:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue