From f443f290470ae686cdbed7b18f4606440f408fc8 Mon Sep 17 00:00:00 2001 From: Nikolaus Schlemm Date: Wed, 19 Jun 2019 12:34:03 +0200 Subject: [PATCH] Fixes #101 by expanding the help text default value --- dbtemplates/management/commands/sync_templates.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dbtemplates/management/commands/sync_templates.py b/dbtemplates/management/commands/sync_templates.py index 020313e..000f89f 100644 --- a/dbtemplates/management/commands/sync_templates.py +++ b/dbtemplates/management/commands/sync_templates.py @@ -27,7 +27,7 @@ def add_arguments(self, parser): "-e", "--ext", dest="ext", action="store", default="html", help="extension of the files you want to " - "sync with the database [default: %default]") + "sync with the database [default: %(default)s]") parser.add_argument( "-f", "--force", action="store_true", dest="force", default=False,