fix wrong cmdline option default for --reset-available

the value of reset_available option tells whether to do the reset (True) or not (False).
it has nothing to do with the value being written to h.available when the reset is executed.
This commit is contained in:
Thomas Waldmann 2014-08-17 00:49:55 +02:00
parent 7c1b260d3b
commit 1f03834463

View File

@ -54,7 +54,7 @@ class Command(BaseCommand):
make_option('--reset-available',
action='store_true',
dest='reset_available',
default=True,
default=False,
help='reset the available flag (to True) of all hosts',
),
make_option('--flag-abuse',