Fixed issue with key_error in autoProcessMovie

This commit is contained in:
echel0n 2014-04-17 09:21:14 -07:00
commit 8d2049cb14
2 changed files with 18 additions and 15 deletions

View file

@ -419,7 +419,7 @@ def get_dirnames(section, subsections=None):
return list(set(dirNames))
def delete(dirName):
logger.info("Deleting failed files and folder %s", dirName)
logger.info("Deleting %s", dirName)
try:
shutil.rmtree(dirName, True)
except: