From a1034a6ca6814b5515ea15c6d87950151deae49e Mon Sep 17 00:00:00 2001 From: Michael Higgins Date: Fri, 30 Aug 2013 17:40:29 -0400 Subject: [PATCH] bugfix for manual path attempt #2 --- manual.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/manual.py b/manual.py index cff5bc26..6f47cfd7 100755 --- a/manual.py +++ b/manual.py @@ -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]) @@ -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]