mirror of
https://github.com/SickGear/SickGear.git
synced 2024-12-03 01:43:37 +00:00
Merge pull request #320 from WebSpider/dev-stop_tvdir_deletion
Prevent TV Download dir from being deleted during postprocessing
This commit is contained in:
commit
d961892b00
1 changed files with 2 additions and 1 deletions
|
@ -147,7 +147,8 @@ def processDir(dirName, nzbName=None, process_method=None, force=False, is_prior
|
|||
if process_method == "move" and \
|
||||
ek.ek(os.path.normpath, processPath) != ek.ek(os.path.normpath,
|
||||
sickbeard.TV_DOWNLOAD_DIR):
|
||||
delete_dir(processPath)
|
||||
if processPath != sickbeard.TV_DOWNLOAD_DIR:
|
||||
delete_dir(processPath)
|
||||
|
||||
return returnStr
|
||||
|
||||
|
|
Loading…
Reference in a new issue