diff options
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 |
commit | 832d65819da20106006e80cddd101fe3ad49363e (patch) | |
tree | 66d755aa897ab35cec779002e6fa0ba2fdbf1077 | |
parent | 05b9acf3048eaefa89e57011968c220fd8c2c2a7 (diff) | |
download | Ishtar-832d65819da20106006e80cddd101fe3ad49363e.tar.bz2 Ishtar-832d65819da20106006e80cddd101fe3ad49363e.zip |
settings: fix col labels overload
-rw-r--r-- | example_project/settings.py | 2 |
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'] |