From cc0525f31912dd85bb0cbc44450be0636fa295d7 Mon Sep 17 00:00:00 2001 From: adam Date: Wed, 25 Feb 2015 21:21:37 +0800 Subject: [PATCH] Change autoProcessTV scripts python code quotes from " -> ' --- CHANGES.md | 1 + autoProcessTV/hellaToSickBeard.py | 2 +- autoProcessTV/sabToSickBeard.py | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 0f0618f6..4700b092 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -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 diff --git a/autoProcessTV/hellaToSickBeard.py b/autoProcessTV/hellaToSickBeard.py index f3d64bde..07d4426d 100755 --- a/autoProcessTV/hellaToSickBeard.py +++ b/autoProcessTV/hellaToSickBeard.py @@ -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]) diff --git a/autoProcessTV/sabToSickBeard.py b/autoProcessTV/sabToSickBeard.py index 2e5b69ea..ab215065 100755 --- a/autoProcessTV/sabToSickBeard.py +++ b/autoProcessTV/sabToSickBeard.py @@ -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])