summaryrefslogtreecommitdiff
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
commit04c5b93e8e4aad4bfb07ffbc1493d2d1c33a518f (patch)
tree66d755aa897ab35cec779002e6fa0ba2fdbf1077
parent4392454570b36c1e0bf9c0d4a365efb99c8b8342 (diff)
downloadIshtar-04c5b93e8e4aad4bfb07ffbc1493d2d1c33a518f.tar.bz2
Ishtar-04c5b93e8e4aad4bfb07ffbc1493d2d1c33a518f.zip
settings: fix col labels overload
-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']