mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2025-08-14 10:36:52 -07:00
Fix case on URL. Fixes #153
This commit is contained in:
parent
6380ac99d4
commit
129f1ebb49
1 changed files with 1 additions and 1 deletions
|
@ -52,7 +52,7 @@ def process(dirName, nzbName=None, status=0):
|
|||
if status == 0:
|
||||
downloadStatus = 'Downloaded'
|
||||
|
||||
URL = baseURL + "UPDATEREQUESTEDSTATUS&db_id=" + gamezID + "&status=" + downloadStatus
|
||||
url = baseURL + "UPDATEREQUESTEDSTATUS&db_id=" + gamezID + "&status=" + downloadStatus
|
||||
|
||||
Logger.debug("Opening URL: %s", url)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue