diff options
author | David Luevano Alvarado <david@luevano.xyz> | 2021-05-18 23:34:34 -0600 |
---|---|---|
committer | David Luevano Alvarado <david@luevano.xyz> | 2021-05-18 23:34:34 -0600 |
commit | 769c785fe60f6ed58810bb2e61d56bf2578e125e (patch) | |
tree | bd37fd9eb50ebbf07b13b7de1722020e61b99dc4 | |
parent | 5494e1516c61762e7c4849f229259a835da5511e (diff) |
lol wrong src and dst variables readv0.2.4
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | src/pyssg/configuration.py | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -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: |