diff options
author | josef <josef@guest108.dk-kas.nordu.net> | 2015-09-03 11:51:42 +0200 |
---|---|---|
committer | josef <josef@guest108.dk-kas.nordu.net> | 2015-09-03 11:51:42 +0200 |
commit | 8db244bd474ca5334933da927968ae4d1c3af525 (patch) | |
tree | 997e97348b1a3d82988260e30042096873fd0e22 /tools/josef_nagios_auditor.py | |
parent | 7fccd81a4903507cbd7f5163ab08d37024d9499f (diff) |
bugfix
Diffstat (limited to 'tools/josef_nagios_auditor.py')
-rwxr-xr-x | tools/josef_nagios_auditor.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/josef_nagios_auditor.py b/tools/josef_nagios_auditor.py index e950c8b..05390f8 100755 --- a/tools/josef_nagios_auditor.py +++ b/tools/josef_nagios_auditor.py @@ -165,7 +165,7 @@ def verify_inclusion_all(url, old, new): if old["tree_size"]!= new["tree_size"]: entries = [] while len(entries) + old[url]["tree_size"]!= new[url]["tree_size"]: - entries = get_entries(url, str(int(old[url]["tree_size"]) + len(entries)), new[url]["tree_size"] -1)["entries"] + entries += get_entries(url, str(int(old[url]["tree_size"]) + len(entries)), new[url]["tree_size"] -1)["entries"] success = True for i in entries: |