several styling and check status fixes. #376

This commit is contained in:
clinton-hall 2014-05-08 10:41:24 +09:30
commit 60787842ce
8 changed files with 96 additions and 17 deletions

View file

@ -42,9 +42,12 @@ class autoProcessTV:
host = nzbtomedia.CFG[section][inputCategory]["host"]
port = nzbtomedia.CFG[section][inputCategory]["port"]
username = nzbtomedia.CFG[section][inputCategory]["username"]
password = nzbtomedia.CFG[section][inputCategory]["password"]
try:
username = nzbtomedia.CFG[section][inputCategory]["username"]
password = nzbtomedia.CFG[section][inputCategory]["password"]
except:
username = ""
password = ""
try:
apikey = nzbtomedia.CFG[section][inputCategory]["apikey"]
except: