added some code to the service classes; no working code; mostly boilerplate...

This commit is contained in:
Johannes Findeisen 2013-06-05 04:20:26 +02:00
commit 132ce81d05
5 changed files with 117 additions and 35 deletions

View file

@ -1,6 +1,8 @@
class Service:
def __init__(self, parser):
def __init__(self, host, parser):
self.host = host
self.parser = parser
self.errorcode = 0
def _execute(self):
self.pre_execute()