mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2025-08-20 21:33:13 -07:00
fix categories
This commit is contained in:
parent
3d717a6216
commit
ed2aa30c02
1 changed files with 3 additions and 2 deletions
|
@ -285,8 +285,9 @@ compressedContainer = config.get("Torrent", "compressedExtentions")
|
||||||
mediaContainer = config.get("Torrent", "mediaExtentions")
|
mediaContainer = config.get("Torrent", "mediaExtentions")
|
||||||
metaContainer = config.get("Torrent", "metaExtentions")
|
metaContainer = config.get("Torrent", "metaExtentions")
|
||||||
categories = config.get("Torrent", "categories")
|
categories = config.get("Torrent", "categories")
|
||||||
categories = categories.append(movieCategory)
|
categories = categories.split(',') #convert to list.
|
||||||
categories = categories.append(tvCategory) #now have a list of all categories in use.
|
categories.append(movieCategory)
|
||||||
|
categories.append(tvCategory) #now have a list of all categories in use.
|
||||||
|
|
||||||
status = int(1) # We start as "failed" until we verify movie file in destination
|
status = int(1) # We start as "failed" until we verify movie file in destination
|
||||||
root = int(0)
|
root = int(0)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue