From e5aba5f70134c99f5c26aecfd3a6dc31136e4179 Mon Sep 17 00:00:00 2001 From: paulfantom Date: Sat, 18 Jun 2016 18:49:48 +0200 Subject: [PATCH] second run --- plugins.d/python.d.plugin | 2 -- python.d/Makefile.am | 1 + python.d/python_modules/base.py | 1 - 3 files changed, 1 insertion(+), 3 deletions(-) diff --git a/plugins.d/python.d.plugin b/plugins.d/python.d.plugin index 418ea912..be319c04 100755 --- a/plugins.d/python.d.plugin +++ b/plugins.d/python.d.plugin @@ -206,7 +206,6 @@ class PythonCharts(object): self._stop(job, "no check") except (UnboundLocalError, Exception) as e: self._stop(job, "misbehaving. Reason: " + str(e)) - print("CHECK OK") def create(self): # try to execute create() on every job @@ -230,7 +229,6 @@ class PythonCharts(object): self._stop(job, "no create") except (UnboundLocalError, Exception) as e: self._stop(job, "misbehaving. Reason: " + str(e)) - print("CREATE OK") def _update_job(self, job): # try to execute update() on every job and draw run time graph diff --git a/python.d/Makefile.am b/python.d/Makefile.am index fa39c8fe..7a4ea46f 100644 --- a/python.d/Makefile.am +++ b/python.d/Makefile.am @@ -12,5 +12,6 @@ dist_python_DATA = \ pythonmodulesdir=$(pythondir)/python_modules dist_pythonmodules_DATA = \ python_modules/__init__.py + python_modules/base.py $(NULL) diff --git a/python.d/python_modules/base.py b/python.d/python_modules/base.py index 9c1f76c3..bfbe0735 100644 --- a/python.d/python_modules/base.py +++ b/python.d/python_modules/base.py @@ -7,7 +7,6 @@ import sys class BaseService(object): def __init__(self,name=None,configuration=None): - print(configuration) if configuration is None: self.error("BaseService: no configuration parameters supplied. Cannot create Service.") raise RuntimeError -- 2.39.2