Fixed support for verbosity and overwrite flags for the import_htpasswd command, which was lost in [7583].

- Legacy-Id: 7585
Note: SVN reference [7583] has been migrated to Git commit 4c0d52d9ed
This commit is contained in:
Henrik Levkowetz 2014-04-09 18:34:18 +00:00
parent 303e93f65f
commit 454c9d83cb

View file

@ -58,5 +58,5 @@ class Command(BaseCommand):
overwrite = options.get('overwrite', False)
verbosity = int(options.get('verbosity'))
for fn in filenames:
import_htpasswd_file(fn)
import_htpasswd_file(fn, verbosity=verbosity, overwrite=overwrite)