From ec89ed44099723e19a0758a3c7ece393c66be402 Mon Sep 17 00:00:00 2001 From: Nathan Forbes Date: Mon, 13 Dec 2010 18:33:04 -0500 Subject: [PATCH] get-google-files: fix path to proprietary Apparently this error has been here since my last commit on this was merged. My apologies for not testing thoroughly. Change-Id: If346403b8e2cf90c960d13340684312d66086676 --- get-google-files | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/get-google-files b/get-google-files index 3c5f21bb..eb8ab538 100755 --- a/get-google-files +++ b/get-google-files @@ -39,7 +39,7 @@ def download(version): print "Extracting %s" % filename try: bytes = zip.read(filename) - fd = open("proprietary/"+os.path.basename(filename),"wb") + fd = open(os.path.join(os.path.dirname(__file__), "proprietary", os.path.basename(filename)),"wb") fd.write(bytes) fd.close() except Exception, e: