diff options
author | Josef Gustafsson <josef.gson@gmail.com> | 2015-09-11 08:36:07 +0200 |
---|---|---|
committer | Josef Gustafsson <josef.gson@gmail.com> | 2015-09-11 08:36:07 +0200 |
commit | f4542f2187bcc627f9d4087d1824458f4322a538 (patch) | |
tree | 9c92e595ea7ad735f952f217920c6c6e83b0fad4 | |
parent | d699b0b0571536120a5413c61c33cd359f32c413 (diff) |
bugfix: check_domain handles faults
-rwxr-xr-x | monitor/josef_monitor.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/monitor/josef_monitor.py b/monitor/josef_monitor.py index e102efe..3a71987 100755 --- a/monitor/josef_monitor.py +++ b/monitor/josef_monitor.py @@ -225,7 +225,7 @@ def fetch_and_increment_subtree(first, last, url, subtree =[[]]): for item in entries: tmp_data = check_domain(item, url) if tmp_data: - tmp_cert_data.append() + tmp_cert_data.append(tmp_data) new_leafs.append(get_leaf_hash(base64.b64decode(item["leaf_input"]))) if DEFAULT_CERT_FILE: if DB is None: |