whitespaces at night...

This commit is contained in:
Johannes Findeisen 2013-06-19 03:26:25 +02:00
commit c463f2473d
11 changed files with 28 additions and 40 deletions

View file

@ -1,15 +1,16 @@
class HostGroupException(Exception):
def __init__(self, msg):
self.msg = msg
def __str__(self):
return repr(self.msg)
class HostGroupMissingArgumentException(HostGroupException):
def __init__(self, missingArgument, hostgroupName):
super(HostGroupMissingArgumentException, self).__init__("no " + missingArgument + " defined for Hostgroup " + hostgroupName)
class HostGroup:
def __init__(self, name, **kwargs):
self.name = name