From 769c785fe60f6ed58810bb2e61d56bf2578e125e Mon Sep 17 00:00:00 2001 From: David Luevano Alvarado Date: Tue, 18 May 2021 23:34:34 -0600 Subject: lol wrong src and dst variables read --- ChangeLog | 1 + src/pyssg/configuration.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index e8dfbe8..328d17a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,7 @@ CHANGES ======= +* fix error on parsing config file * finally fix argparse error, questionmark * checking argparse errors * fix missing import diff --git a/src/pyssg/configuration.py b/src/pyssg/configuration.py index d5a5c08..5f73c23 100644 --- a/src/pyssg/configuration.py +++ b/src/pyssg/configuration.py @@ -40,7 +40,7 @@ class Configuration: except KeyError: pass try: - self.dst = opts['SRC_PATH'] + self.dst = opts['DST_PATH'] except KeyError: pass try: -- cgit v1.2.3