From c3c7d629f7c836d03adac860e1529ce63d223c86 Mon Sep 17 00:00:00 2001 From: Ross Scroggs Date: Fri, 18 Oct 2024 14:35:56 -0700 Subject: [PATCH] Fixed bug in `gam create vaultmatter ... showdetails` that caused a trap. --- docs/GamUpdates.md | 4 ++++ src/GamUpdate.txt | 4 ++++ src/gam/__init__.py | 4 ++-- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/docs/GamUpdates.md b/docs/GamUpdates.md index 72cdab8f..bb5bfcba 100644 --- a/docs/GamUpdates.md +++ b/docs/GamUpdates.md @@ -10,6 +10,10 @@ Add the `-s` option to the end of the above commands to suppress creating the `g See [Downloads-Installs-GAM7](https://github.com/GAM-team/GAM/wiki/Downloads-Installs) for Windows or other options, including manual installation +### 7.00.22 + +Fixed bug in `gam create vaultmatter ... showdetails` that caused a trap. + ### 7.00.21 Added `csv_output_header_order` variable to `gam.cfg` that is a list of `` diff --git a/src/GamUpdate.txt b/src/GamUpdate.txt index b6e8ad6c..22f3927d 100644 --- a/src/GamUpdate.txt +++ b/src/GamUpdate.txt @@ -1,3 +1,7 @@ +7.00.22 + +Fixed bug in `gam create vaultmatter ... showdetails` that caused a trap. + 7.00.21 Added `csv_output_header_order` variable to `gam.cfg` that is a list of `` diff --git a/src/gam/__init__.py b/src/gam/__init__.py index 29e8b745..3ed250f2 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.00.21' +__version__ = '7.00.22' __license__ = 'Apache License 2.0 (http://www.apache.org/licenses/LICENSE-2.0)' #pylint: disable=wrong-import-position @@ -41154,7 +41154,7 @@ def doCreateVaultMatter(): break Ind.Decrement() if showDetails: - _showVaultMatter(None, matter, cd, None) + _showVaultMatter(matter, cd, None) VAULT_MATTER_ACTIONS = { 'close': Act.CLOSE,