From 04c5b93e8e4aad4bfb07ffbc1493d2d1c33a518f Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Mon, 1 Oct 2018 19:17:45 +0200 Subject: settings: fix col labels overload --- example_project/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'example_project') 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'] -- cgit v1.2.3