From 6de424b185d30c0f9db5ba5c0b60302cee1b9bee Mon Sep 17 00:00:00 2001 From: Ross Scroggs Date: Fri, 8 Apr 2022 07:43:47 -0700 Subject: [PATCH] Two updates (#1504) --- src/gam/gapi/caa.py | 2 +- src/setup.cfg | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gam/gapi/caa.py b/src/gam/gapi/caa.py index 1c1aeaed..f5f2ccc6 100644 --- a/src/gam/gapi/caa.py +++ b/src/gam/gapi/caa.py @@ -180,7 +180,7 @@ def create_access_level(): ap_name = get_access_policy(caa) title = sys.argv[3].replace(' ', '_') allowed_title_chars = string.ascii_letters + string.digits + '_' - name = ''.join([c for c in title if c in allowed_title_chars])[:49] + name = ''.join([c for c in title if c in allowed_title_chars])[:50] name = f'{ap_name}/accessLevels/{name}' body = { 'name': name, diff --git a/src/setup.cfg b/src/setup.cfg index 4f14e5a0..09c82464 100644 --- a/src/setup.cfg +++ b/src/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = GAM for Google Workspace -version = 6.0.18 +version = 6.0.20 description = Command line management for Google Workspaces long_description = file: readme.md long_description_content_type = text/markdown