summaryrefslogtreecommitdiffstats
path: root/packages
diff options
context:
space:
mode:
authorJelle van der Waa <jelle@vdwaa.nl>2018-02-16 23:03:05 +0100
committerJelle van der Waa <jelle@vdwaa.nl>2018-04-08 12:51:19 +0200
commit3e5885c9ed01ce30f99e6be41b0294bf07f8fc43 (patch)
tree776c48c9e41fcdeecd4fc334851c04eed7585f14 /packages
parentcbb242f6bbe64bd69f597ccaca252f32d177cbf1 (diff)
downloadarchweb-3e5885c9ed01ce30f99e6be41b0294bf07f8fc43.tar.gz
archweb-3e5885c9ed01ce30f99e6be41b0294bf07f8fc43.zip
packages: Add missing args
Add missing add_argument to parse args.
Diffstat (limited to 'packages')
-rw-r--r--packages/management/commands/populate_signoffs.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/packages/management/commands/populate_signoffs.py b/packages/management/commands/populate_signoffs.py
index 217eff97..50763cd0 100644
--- a/packages/management/commands/populate_signoffs.py
+++ b/packages/management/commands/populate_signoffs.py
@@ -32,6 +32,9 @@ class Command(BaseCommand):
help = """Pull the latest commit message from SVN for a given package that
is signoff-eligible and does not have an existing comment attached"""
+ def add_arguments(self, parser):
+ parser.add_argument('args', nargs='*', help='<arch> <filename>')
+
def handle(self, **options):
v = int(options.get('verbosity', None))
if v == 0: