Browse Source

Update NZBGet extension 2.5 → 2.6.

Fix dupe detection while adding, or marking bad in NZBGet under py3.
tags/release_0.21.41^2
Prinz23 5 years ago
committed by JackDandy
parent
commit
7128c9f46b
  1. 7
      CHANGES.md
  2. 4
      autoProcessTV/SickGear-NG/SickGear-NG.py

7
CHANGES.md

@ -1,4 +1,9 @@
### 0.21.40 (2020-07-20 22:00:00 UTC)
### 0.21.41 (2020-07-31 09:25:00 UTC)
* Update NZBGet extension 2.5 to 2.6
### 0.21.40 (2020-07-20 22:00:00 UTC)
* Change allow Python 3.8.5

4
autoProcessTV/SickGear-NG/SickGear-NG.py

@ -51,7 +51,7 @@
# Send "Process Media" requests to SickGear
#
# Process Media extension version: 2.5.
# Process Media extension version: 2.6.
# <!--
# For more info and updates please visit forum topic at
# -->
@ -573,7 +573,7 @@ def call_nzbget_direct(url_command):
except requests.RequestException:
return ''
return response.content if response.ok else ''
return response.text if response.ok else ''
# noinspection DuplicatedCode

Loading…
Cancel
Save