summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Luevano Alvarado <55825613+luevano@users.noreply.github.com>2021-09-26 16:23:18 -0600
committerDavid Luevano Alvarado <55825613+luevano@users.noreply.github.com>2021-09-26 16:23:18 -0600
commit29ad667e4297fd4c6e7d3d86ccaa0fc68ee39362 (patch)
tree57fc78eb0fcdfa4597bc3e1131a5a8aa2d9891b6
parent9c8e366c5160dfa2e0fc8f59a4ae20a7b5954ec4 (diff)
quick fix on random uppercased letters
-rw-r--r--src/pyssg/configuration.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/pyssg/configuration.py b/src/pyssg/configuration.py
index e07f452..d065b45 100644
--- a/src/pyssg/configuration.py
+++ b/src/pyssg/configuration.py
@@ -79,15 +79,15 @@ class Configuration:
except KeyError: pass
try:
- self.dformat = opts['date_formaT']
+ self.dformat = opts['date_format']
except KeyError: pass
try:
- self.l_dformat = opts['list_date_FORMAT']
+ self.l_dformat = opts['list_date_format']
except KeyError: pass
try:
- self.lsep_dformat = opts['list_sep_dATE_FORMAT']
+ self.lsep_dformat = opts['list_sep_date_format']
except KeyError: pass
try: