aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2012-11-18 19:11:01 +0100
committerMattias Andrée <maandree@operamail.com>2012-11-18 19:11:01 +0100
commitbe75aa93f212d570b135fe208b21a6b33d3c5844 (patch)
treebb37f6dac67339828233ea5a930e4f313a585bdf
parentIt works, accept no update loop has be implemented (diff)
downloadsysrss-be75aa93f212d570b135fe208b21a6b33d3c5844.tar.gz
sysrss-be75aa93f212d570b135fe208b21a6b33d3c5844.tar.bz2
sysrss-be75aa93f212d570b135fe208b21a6b33d3c5844.tar.xz
m
Signed-off-by: Mattias Andrée <maandree@operamail.com>
-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):