Make the default an empty string

Seems a bit strange I have to set a default in two locations.
This commit is contained in:
Dag Wieers 2012-11-21 16:11:20 +01:00
parent 6b69b37eb0
commit 118ccc68c9

View file

@ -265,7 +265,7 @@ def main():
state = dict(choices=['running', 'started', 'stopped', 'restarted', 'reloaded']), state = dict(choices=['running', 'started', 'stopped', 'restarted', 'reloaded']),
pattern = dict(required=False, default=None), pattern = dict(required=False, default=None),
enabled = dict(choices=BOOLEANS), enabled = dict(choices=BOOLEANS),
arguments = dict(aliases=['args']), arguments = dict(aliases=['args'], default=''),
) )
) )