From d5f7a684de97f22bff2de515e49506831332056b Mon Sep 17 00:00:00 2001 From: shikhar1verma Date: Tue, 10 Oct 2017 22:08:44 +0530 Subject: [PATCH] https://github.com/nikssardana/gdriveTorrent/issues/38 --- gdriveTorrent/downloaded.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gdriveTorrent/downloaded.py b/gdriveTorrent/downloaded.py index 2d9ed9b..04efd6c 100644 --- a/gdriveTorrent/downloaded.py +++ b/gdriveTorrent/downloaded.py @@ -25,7 +25,7 @@ def uploadFiles(): f.write(fileName) #Run gdrive command and upload the file:"./downloads/fileName" to gdrive - script = 'gdrive upload -p 0BxvPH5Yx_NkmRzluTk9sLTlMUXc "%s%s" --recursive'%(path,fileName) + script = 'gdrive upload "%s%s" --recursive'%(path,fileName) logFile = open('outputGdrive.txt','a') process = Popen(script, shell = True, stdout=logFile, stderr=logFile)