aboutsummaryrefslogtreecommitdiffstats
path: root/prometheus.py
diff options
context:
space:
mode:
Diffstat (limited to 'prometheus.py')
-rwxr-xr-xprometheus.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/prometheus.py b/prometheus.py
index 440971e..9e45d69 100755
--- a/prometheus.py
+++ b/prometheus.py
@@ -49,7 +49,7 @@ class Prometheus():
def handler(self, metrics_handler):
now = time()
- if now >= i(self._last_update + self.ttl):
+ if now >= (self._last_update + self.ttl):
self._metrics.update()
self._last_update = now