aboutsummaryrefslogtreecommitdiff
path: root/voctocore/voctocore.py
diff options
context:
space:
mode:
authorMaZderMind <github@mazdermind.de>2015-05-15 10:40:17 +0200
committerMaZderMind <github@mazdermind.de>2015-05-15 10:40:17 +0200
commit18af1394a8b732d94b48b8f13e78cfcae3e45a6e (patch)
tree277a4ed47ce1823742da57a9999b75dd1a265f22 /voctocore/voctocore.py
parent389f87470bc988a2e4c26b4ce6e23a313aafbaf0 (diff)
Move Class-Level variables to the Instances
I should really learn python…
Diffstat (limited to 'voctocore/voctocore.py')
-rwxr-xr-xvoctocore/voctocore.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/voctocore/voctocore.py b/voctocore/voctocore.py
index 2f60f72..552cf2b 100755
--- a/voctocore/voctocore.py
+++ b/voctocore/voctocore.py
@@ -29,9 +29,8 @@ from lib.controlserver import ControlServer
# main class
class Voctocore(object):
- log = logging.getLogger('Voctocore')
-
def __init__(self):
+ self.log = logging.getLogger('Voctocore')
self.log.debug('creating GObject-MainLoop')
self.mainloop = GObject.MainLoop()