diff options
-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'] |