diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/pyssg/pyssg.py | 3 |
1 files changed, 3 insertions, 0 deletions
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) |