Change autoProcessTV scripts python code quotes from " -> '

This commit is contained in:
adam 2015-02-25 21:21:37 +08:00 committed by Adam
parent bf0fadeaa2
commit cc0525f319
3 changed files with 3 additions and 2 deletions

View file

@ -13,6 +13,7 @@
* Add priority, device, and sound support to Pushover notifier (port from midgetspy/sickbeard)
* Fix updating of pull requests
* Add hidden cache debug page
* Change autoProcessTV scripts python code quotes from " -> '
[develop changelog]
* Fix traceback error when using the menu item Manage/Update Kodi

View file

@ -24,7 +24,7 @@ import sys
import autoProcessTV
if len(sys.argv) < 4:
print "No folder supplied - is this being called from HellaVCR?"
print 'No folder supplied - is this being called from HellaVCR?'
sys.exit()
else:
autoProcessTV.processEpisode(sys.argv[3], sys.argv[2])

View file

@ -23,7 +23,7 @@ import sys
import autoProcessTV
if len(sys.argv) < 2:
print "No folder supplied - is this being called from SABnzbd?"
print 'No folder supplied - is this being called from SABnzbd?'
sys.exit()
elif len(sys.argv) >= 8:
autoProcessTV.processEpisode(sys.argv[1], sys.argv[2], sys.argv[7])