From 78ce646eee266dabf17019597d4f2facfb881288 Mon Sep 17 00:00:00 2001 From: Ross Scroggs Date: Sat, 15 Oct 2016 18:23:40 -0700 Subject: [PATCH] Add fullquery to show filelist (#289) This allows user to bypass "'me' in owners" --- src/gam.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/gam.py b/src/gam.py index 5fc899fa..e19ebe98 100755 --- a/src/gam.py +++ b/src/gam.py @@ -3829,6 +3829,9 @@ def printDriveFileList(users): elif myarg == u'query': query += u' and %s' % sys.argv[i+1] i += 2 + elif myarg == u'fullquery': + query = sys.argv[i+1] + i += 2 elif myarg == u'allfields': fieldsList = [] allfields = True