Skip to content

Commit 64481e5

Browse files
committed
Fixing minor issue in list_terms
Signed-off-by: Dan Wolfson <[email protected]>
1 parent b64440b commit 64481e5

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

pyegeria/commands/cli/egeria.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -879,7 +879,7 @@ def glossary_group(ctx):
879879
)
880880
@click.option(
881881
"--glossary-guid",
882-
default=None,
882+
default=os.environ.get("EGERIA_HOME_GLOSSARY_GUID", None),
883883
help="Optionally restrict search to glossary with the specified guid",
884884
)
885885
@click.option(

pyegeria/commands/cli/egeria_cat.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,7 @@ def glossary_group(ctx):
311311
)
312312
@click.option(
313313
"--glossary-guid",
314-
default=os.environ.get("EGERIA_HOME_GLOSSARY_GUID"),
314+
default=os.environ.get("EGERIA_HOME_GLOSSARY_GUID", None),
315315
help="Optionally restrict search to glossary with the specified guid",
316316
)
317317
@click.option(

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "pyegeria"
3-
version = "5.2.0.42.4"
3+
version = "5.2.0.42.5"
44
license = 'Apache 2.0'
55
authors = ["Dan Wolfson <[email protected]>"]
66
readme = "README.md"

0 commit comments

Comments
 (0)