diff options
author | Josef Gustafsson <josef.gson@gmail.com> | 2015-09-29 16:12:04 +0200 |
---|---|---|
committer | Josef Gustafsson <josef.gson@gmail.com> | 2015-09-29 16:12:04 +0200 |
commit | 9a8557ebf15d61661b621c559aabecddeb5b6a08 (patch) | |
tree | 39ac24a33a8fd6d063c7786c7b462db42ee5ece9 /monitor/josef_leveldb.py | |
parent | 3ce97b21e8efe2432f3b4fcbd494c4b9560341fb (diff) |
minor fixes
Diffstat (limited to 'monitor/josef_leveldb.py')
-rwxr-xr-x | monitor/josef_leveldb.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/monitor/josef_leveldb.py b/monitor/josef_leveldb.py index 9c6f77d..1b6dacc 100755 --- a/monitor/josef_leveldb.py +++ b/monitor/josef_leveldb.py @@ -15,7 +15,7 @@ dbs = {} def match_domain(d1, d2): # Exact match - if d1 == d2: + if str(d1) == str(d2): return True # Wildcard match |