Skip to content

Commit

Permalink
bugfix for manual path attempt #2
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Higgins committed Aug 30, 2013
1 parent 33c8c98 commit a1034a6
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions manual.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ def getinfo():

def main():
if len(sys.argv) > 2:
path = raw(str(sys.argv[1]))
path = str(sys.argv[1])
if sys.argv[2] == '-tv':
tvdbid = int(sys.argv[3])
season = int(sys.argv[4])
Expand All @@ -129,9 +129,7 @@ def main():
print "Enter path to file:"
path = raw_input("#: ")
if path.startswith('"') and path.endswith('"'):
print path
path = path[1:-1]
#path = raw(path)
result = getinfo()
if result[0] is 1:
imdbid = result[1]
Expand Down

0 comments on commit a1034a6

Please sign in to comment.