diff --git a/src/GamUpdate.txt b/src/GamUpdate.txt index 27d73d5a..8275d59c 100644 --- a/src/GamUpdate.txt +++ b/src/GamUpdate.txt @@ -1,3 +1,8 @@ +7.35.04 + +Fixed bug in `gam create feature name ` where the result was incorrectly shown as +`Building: , Added` instead of `Feature: , Added`. + 7.35.03 Updated `gam print filelist|filecounts` to handle options `showsize` and `showsizeunits` as independent options. diff --git a/src/gam/__init__.py b/src/gam/__init__.py index aba1784c..cafcf764 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.35.03' +__version__ = '7.35.04' __license__ = 'Apache License 2.0 (http://www.apache.org/licenses/LICENSE-2.0)' # pylint: disable=wrong-import-position @@ -39696,7 +39696,7 @@ def doCreateFeature(): callGAPI(cd.resources().features(), 'insert', throwReasons=[GAPI.DUPLICATE, GAPI.INVALID_INPUT, GAPI.BAD_REQUEST, GAPI.NOT_FOUND, GAPI.FORBIDDEN], customer=GC.Values[GC.CUSTOMER_ID], body=body) - entityActionPerformed([Ent.BUILDING, body['name']]) + entityActionPerformed([Ent.FEATURE, body['name']]) except GAPI.duplicate: entityDuplicateWarning([Ent.FEATURE, body['name']]) except GAPI.invalidInput as e: