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