]> arthur.barton.de Git - netdata.git/blobdiff - python.d/mysql.chart.py
more debug
[netdata.git] / python.d / mysql.chart.py
index 5ea3dd2922ff3c124175fd0661e6dcf5834c2ff4..e43a72c4dd4f5d96e70dbada59b453ea179ab698 100644 (file)
@@ -4,6 +4,7 @@
 
 import os
 import sys
+from base import BaseService
 
 NAME = os.path.basename(__file__).replace(".chart.py", "")
 
@@ -23,8 +24,6 @@ except ImportError:
         sys.stderr.write(NAME + ": You need to install MySQLdb or PyMySQL module to use mysql.chart.py plugin\n")
         raise ImportError
 
-from base import BaseService
-
 # default module values (can be overridden per job in `config`)
 update_every = 3
 priority = 90000