Skip to content

Commit 454c9d8

Browse files
committed
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 4c0d52d
1 parent 303e93f commit 454c9d8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/utils/management/commands/import_htpasswd.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,5 +58,5 @@ def handle(self, *filenames, **options):
5858
overwrite = options.get('overwrite', False)
5959
verbosity = int(options.get('verbosity'))
6060
for fn in filenames:
61-
import_htpasswd_file(fn)
61+
import_htpasswd_file(fn, verbosity=verbosity, overwrite=overwrite)
6262

0 commit comments

Comments
 (0)