Make the default an empty string

Seems a bit strange I have to set a default in two locations.
pull/4420/head
Dag Wieers 2012-11-21 16:11:20 +01:00
parent 6b69b37eb0
commit 118ccc68c9
1 changed files with 1 additions and 1 deletions

View File

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