summaryrefslogtreecommitdiffstats
path: root/python.d
diff options
context:
space:
mode:
authorlgz <ilyamaschenko@gmail.com>2017-11-08 22:48:23 +0900
committerlgz <ilyamaschenko@gmail.com>2017-11-08 22:48:23 +0900
commita4a0cf4f662d9104bbf1fdc370ee778c40340328 (patch)
tree2f2b8883628a84df41f22852f5183660b1853954 /python.d
parent3e7952d80a08966a9d3bef47d23992517ae6ada8 (diff)
varnish module bugfix
Diffstat (limited to 'python.d')
-rw-r--r--python.d/varnish.chart.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python.d/varnish.chart.py b/python.d/varnish.chart.py
index ef499b39e5..5505dc5e0b 100644
--- a/python.d/varnish.chart.py
+++ b/python.d/varnish.chart.py
@@ -145,7 +145,7 @@ class Service(SimpleService):
if self.backend_list:
self.regex_backend = regex1
else:
- self.backend_list = self.regex2.findall(reply)[::2]
+ self.backend_list = regex2.findall(reply)[::2]
self.regex_backend = regex2
self.create_charts()