Skip to content

Commit

Permalink
Fixed bug in gam create vaultmatter ... showdetails that caused a t…
Browse files Browse the repository at this point in the history
…rap.
  • Loading branch information
taers232c committed Oct 18, 2024
1 parent eb33b65 commit c3c7d62
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
4 changes: 4 additions & 0 deletions docs/GamUpdates.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 `<Strings>`
Expand Down
4 changes: 4 additions & 0 deletions src/GamUpdate.txt
Original file line number Diff line number Diff line change
@@ -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 `<Strings>`
Expand Down
4 changes: 2 additions & 2 deletions src/gam/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"""

__author__ = 'GAM Team <google-apps-manager@googlegroups.com>'
__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
Expand Down Expand Up @@ -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,
Expand Down

0 comments on commit c3c7d62

Please sign in to comment.