summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Luevano Alvarado <david@luevano.xyz>2021-05-18 23:34:34 -0600
committerDavid Luevano Alvarado <david@luevano.xyz>2021-05-18 23:34:34 -0600
commit769c785fe60f6ed58810bb2e61d56bf2578e125e (patch)
treebd37fd9eb50ebbf07b13b7de1722020e61b99dc4
parent5494e1516c61762e7c4849f229259a835da5511e (diff)
lol wrong src and dst variables readv0.2.4
-rw-r--r--ChangeLog1
-rw-r--r--src/pyssg/configuration.py2
2 files changed, 2 insertions, 1 deletions
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: