Two updates (#1504)

This commit is contained in:
Ross Scroggs
2022-04-08 07:43:47 -07:00
committed by GitHub
parent f89491d801
commit 6de424b185
2 changed files with 2 additions and 2 deletions

View File

@@ -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,

View File

@@ -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