From 66ca32532e2cf8cf3d7164d80af1c57b9bbae690 Mon Sep 17 00:00:00 2001 From: clinton-hall Date: Tue, 5 Feb 2013 18:24:18 -0800 Subject: [PATCH] Correct call to os.getcwd() --- TorrentToMedia.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TorrentToMedia.py b/TorrentToMedia.py index 4cc95eab..71bc08a8 100755 --- a/TorrentToMedia.py +++ b/TorrentToMedia.py @@ -175,7 +175,7 @@ elif packed == 1: ## unpack ## Running.. print("INFO: Extracting %s %s %s %s", cmd[0], cmd[1], fp, destination) - pwd = os.getcwd # Get our Present Working Directory + pwd = os.getcwd() # Get our Present Working Directory os.chdir(destination) #not all unpack commands accept full paths, so just extract into this directory. if os.name == 'nt': #Windows needs quotes around directory structure try: