Merge pull request #52 from SUNET/jocar-allow-empty-hosts
Allow empty hosts
This commit is contained in:
commit
646c40daf1
|
@ -26,7 +26,8 @@ found = False
|
|||
classes = dict()
|
||||
for reg, cls in rules.items():
|
||||
if re.search(reg, node_name):
|
||||
classes.update(cls)
|
||||
if cls:
|
||||
classes.update(cls)
|
||||
found = True
|
||||
|
||||
if not found:
|
||||
|
|
Loading…
Reference in a new issue