aboutsummaryrefslogtreecommitdiffstats
path: root/sysrss.py
diff options
context:
space:
mode:
Diffstat (limited to 'sysrss.py')
-rwxr-xr-xsysrss.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/sysrss.py b/sysrss.py
index 3b4c694..fe6fec6 100755
--- a/sysrss.py
+++ b/sysrss.py
@@ -84,7 +84,8 @@ class SysRSS:
exit(254)
for site in self.sites:
- if site.interval < 1:
+ site.interval = int(site.interval)
+ if site.interval <= 0:
print('Site %s does not have a positive interval and will therefore only be checked right now.' % site.name)
message = site()
if (message is not None) and (len(message) > 0):