whitespaces at night...
This commit is contained in:
parent
ce631ad12d
commit
c463f2473d
11 changed files with 28 additions and 40 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue