Browse Source

Change autoProcessTV scripts python code quotes from " -> '

pull/235/head
adam 10 years ago
committed by Adam
parent
commit
cc0525f319
  1. 1
      CHANGES.md
  2. 2
      autoProcessTV/hellaToSickBeard.py
  3. 2
      autoProcessTV/sabToSickBeard.py

1
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

2
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])

2
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])

Loading…
Cancel
Save