fix filtering by mac address

This commit is contained in:
Dominik Heidler 2015-12-09 19:57:15 +01:00
parent 850c474371
commit 166e72b072
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ def parse_router_list_search_query(args):
key = "hostname"
value = word
else:
key, value = word.split(':')
key, value = word.split(':', 1)
if key in allowed_filters:
query_usr[key] = query_usr.get(key, "") + value
query = {}