Skip to content

Commit

Permalink
Merge pull request #15 from ab-anand/recursion-fix
Browse files Browse the repository at this point in the history
recursion fix
  • Loading branch information
ab-anand authored Aug 29, 2022
2 parents 694799b + ca99aff commit cc0b49d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion zdrive/download/downloader.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def getAllFiles(self, folderId, destinationFolder=None):
results = self.service.files().list(
spaces='drive',
pageToken=page_token,
q="parents in '{0}'".format(folderId),
q="'{0}' in parents".format(folderId),
fields="nextPageToken, files(id, name, mimeType)"
).execute()

Expand Down
2 changes: 1 addition & 1 deletion zdrive/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# Version of ZDrive package
VERSION = "2.1.3"
VERSION = "2.1.4"

0 comments on commit cc0b49d

Please sign in to comment.