From 2bc1429ee2cc11838ab92a0ee8a7a287b2544ce9 Mon Sep 17 00:00:00 2001 From: Jay Lee Date: Wed, 4 Dec 2024 13:07:35 +0000 Subject: [PATCH] revert to previous project length limits --- src/gam/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gam/__init__.py b/src/gam/__init__.py index a5dfa9b09..d626e489b 100755 --- a/src/gam/__init__.py +++ b/src/gam/__init__.py @@ -11484,7 +11484,7 @@ def _getLoginHintProjectInfo(createCmd): if login_hint and login_hint.find('@') == -1: Cmd.Backup() login_hint = None - projectInfo['projectId'] = getString(Cmd.OB_STRING, optional=True, minLen=6, maxLen=101).strip() + projectInfo['projectId'] = getString(Cmd.OB_STRING, optional=True, minLen=6, maxLen=30).strip() if projectInfo['projectId']: _checkProjectId(projectInfo['projectId']) checkForExtraneousArguments() @@ -11496,7 +11496,7 @@ def _getLoginHintProjectInfo(createCmd): elif myarg == 'nokey': create_key = False elif myarg == 'project': - projectInfo['projectId'] = getString(Cmd.OB_STRING, minLen=6, maxLen=101) + projectInfo['projectId'] = getString(Cmd.OB_STRING, minLen=6, maxLen=30) _checkProjectId(projectInfo['projectId']) elif createCmd and myarg == 'parent': projectInfo['parent'] = getString(Cmd.OB_STRING)