mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2025-08-20 05:13:16 -07:00
correct : for if statements
This commit is contained in:
parent
0d8ed14b13
commit
3d97ff2eb4
1 changed files with 2 additions and 2 deletions
|
@ -8,7 +8,7 @@ from os.path import isfile, join
|
|||
|
||||
|
||||
print "TorrentToMedia v 4.1"
|
||||
if len(sys.argv) == 4
|
||||
if len(sys.argv) == 4:
|
||||
##You can use the following parameters (UTORRENT):
|
||||
##
|
||||
##%F - Name of downloaded file (for single file torrents)
|
||||
|
@ -73,7 +73,7 @@ if Category == Movie_Cat:
|
|||
destination = Movie_dest
|
||||
elif Category == TV_Cat:
|
||||
destination = TV_dest
|
||||
else;
|
||||
else:
|
||||
print "INFO: Not assigned a label of either", Movie_Cat, "or", TV_Cat, ". Exiting"
|
||||
sys.exit(-1)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue