diff --git a/sickbeard/autoPostProcesser.py b/sickbeard/autoPostProcesser.py index 80f700434a..d0b942511c 100644 --- a/sickbeard/autoPostProcesser.py +++ b/sickbeard/autoPostProcesser.py @@ -1,4 +1,4 @@ -# Author: Nic Wolfe +stars# Author: Nic Wolfe # URL: http://code.google.com/p/sickbeard/ # # This file is part of Sick Beard. @@ -24,7 +24,7 @@ from sickbeard import encodingKludge as ek from sickbeard import processTV - + class PostProcesser(): def run(self): @@ -32,11 +32,12 @@ def run(self): return if not ek.ek(os.path.isdir, sickbeard.TV_DOWNLOAD_DIR): - logger.log(u"Automatic post-processing attempted but dir " + sickbeard.TV_DOWNLOAD_DIR + " doesn't exist", logger.ERROR) + logger.log(u"Automatic post-processing attempted but dir " + sickbeard.TV_DOWNLOAD_DIR + " doesn't exist", logger.ERROR) return if not ek.ek(os.path.isabs, sickbeard.TV_DOWNLOAD_DIR): - logger.log(u"Automatic post-processing attempted but dir " + sickbeard.TV_DOWNLOAD_DIR + " is relative (and probably not what you really want to process)", logger.ERROR) + logger.log(u"Automatic post-processing attempted but dir " + sickbeard.TV_DOWNLOAD_DIR + " is relative (and probably not what you really want to process)", logger.ERROR) return - processTV.processDir(sickbeard.TV_DOWNLOAD_DIR, method='Automatic') + + processTV.processDir(sickbeard.TV_DOWNLOAD_DIR, method='Automatic')