diff options
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | src/pyssg/pyssg.py | 3 |
2 files changed, 5 insertions, 0 deletions
@@ -1,6 +1,8 @@ CHANGES ======= +* fix missing import + v0.2.3 ------ diff --git a/src/pyssg/pyssg.py b/src/pyssg/pyssg.py index 7fe24d5..f90cfcb 100644 --- a/src/pyssg/pyssg.py +++ b/src/pyssg/pyssg.py @@ -71,6 +71,9 @@ def get_options() -> Namespace: def main() -> None: opts: dict[str, Union[str, bool]] = vars(get_options()) + for k, v in opts.items(): + print(k, v) + conf_path: str = opts['config'] conf_path = os.path.expandvars(conf_path) |