Fix restrict columns

This commit is contained in:
Ozzieisaacs 2020-01-27 20:34:36 +01:00
parent e44494aad0
commit 00dafe3121

View File

@ -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