diff --git a/src/GamUpdate.txt b/src/GamUpdate.txt index 7a6a5c1d..480c3403 100644 --- a/src/GamUpdate.txt +++ b/src/GamUpdate.txt @@ -1,3 +1,8 @@ +7.01.01 + +Fixed bug in `gam print|show filetree` where no error message was generated +if a user had Drive disabled. + 7.01.00 Fixed bug in `gam update chromepolicy` that caused some policy updates to fail. @@ -5,7 +10,7 @@ Fixed bug in `gam update chromepolicy` that caused some policy updates to fail. Added option `showhtml` to `gam print|show messages` that, when used with `showbody`, will display message body content of type HTML. -Added support for manageing/displaying Chrome profiles. +Added support for managing/displaying Chrome profiles. * See: https://github.com/GAM-team/GAM/wiki/Chrome-Profile-Management diff --git a/src/gam/__init__.py b/src/gam/__init__.py index cb4cd421..bfb6a1ed 100755 --- a/src/gam/__init__.py +++ b/src/gam/__init__.py @@ -25,7 +25,7 @@ https://github.com/GAM-team/GAM/wiki """ __author__ = 'GAM Team ' -__version__ = '7.01.00' +__version__ = '7.01.01' __license__ = 'Apache License 2.0 (http://www.apache.org/licenses/LICENSE-2.0)' #pylint: disable=wrong-import-position @@ -54815,7 +54815,8 @@ def initFileTree(drive, shareddrive, DLP, shareddriveFields, showParent, user, i except (GAPI.notFound, GAPI.fileNotFound, GAPI.invalid, GAPI.noListTeamDrivesAdministratorPrivilege) as e: entityActionFailedWarning([Ent.USER, user, Ent.SHAREDDRIVE, fileId], str(e), i, count) return (None, False) - except (GAPI.serviceNotAvailable, GAPI.authError, GAPI.domainPolicy): + except (GAPI.serviceNotAvailable, GAPI.authError, GAPI.domainPolicy) as e: + userSvcNotApplicableOrDriveDisabled(user, str(e), i, count) return (None, False) return (fileTree, True)