Commit 00dafe31 authored by Ozzieisaacs's avatar Ozzieisaacs

Fix restrict columns

parent e44494aa
......@@ -810,7 +810,7 @@ def get_cc_columns():
cc = []
for col in tmpcc:
r = re.compile(config.config_columns_to_ignore)
if r.match(col.label):
if not r.match(col.name):
cc.append(col)
else:
cc = tmpcc
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment