Skip to content

Commit cc0b49d

Browse files
authored
Merge pull request #15 from ab-anand/recursion-fix
recursion fix
2 parents 694799b + ca99aff commit cc0b49d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

zdrive/download/downloader.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def getAllFiles(self, folderId, destinationFolder=None):
4040
results = self.service.files().list(
4141
spaces='drive',
4242
pageToken=page_token,
43-
q="parents in '{0}'".format(folderId),
43+
q="'{0}' in parents".format(folderId),
4444
fields="nextPageToken, files(id, name, mimeType)"
4545
).execute()
4646

zdrive/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# Version of ZDrive package
2-
VERSION = "2.1.3"
2+
VERSION = "2.1.4"

0 commit comments

Comments
 (0)