summaryrefslogtreecommitdiff
path: root/example_project
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@iggdrasil.net>2018-10-01 19:17:45 +0200
committerÉtienne Loks <etienne.loks@iggdrasil.net>2018-10-01 19:17:45 +0200
commit832d65819da20106006e80cddd101fe3ad49363e (patch)
tree66d755aa897ab35cec779002e6fa0ba2fdbf1077 /example_project
parent05b9acf3048eaefa89e57011968c220fd8c2c2a7 (diff)
downloadIshtar-832d65819da20106006e80cddd101fe3ad49363e.tar.bz2
Ishtar-832d65819da20106006e80cddd101fe3ad49363e.zip
settings: fix col labels overload
Diffstat (limited to 'example_project')
-rw-r--r--example_project/settings.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/example_project/settings.py b/example_project/settings.py
index a27046f5f..a76134746 100644
--- a/example_project/settings.py
+++ b/example_project/settings.py
@@ -275,7 +275,7 @@ if MAIN_APP:
if hasattr(extra_module, 'TABLE_COLS'):
TABLE_COLS = extra_module.TABLE_COLS
if hasattr(extra_module, 'COL_LABELS'):
- TABLE_COLS = extra_module.COL_LABELS
+ COL_LABELS = extra_module.COL_LABELS
TESTING = sys.argv[1:2] == ['test']