From e37b1dac1b379417bd609eabef2b836185434907 Mon Sep 17 00:00:00 2001 From: Tommi Virtanen Date: Mon, 3 Sep 2007 19:17:48 -0700 Subject: [PATCH] Oops, fix bad arguments. Sadly no unit tests for this part :( --- gitosis/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gitosis/app.py b/gitosis/app.py index 5ae796f..f827ac2 100644 --- a/gitosis/app.py +++ b/gitosis/app.py @@ -68,6 +68,6 @@ class App(object): else: logging.root.setLevel(symbolic) - def handle_args(self, parser, options, args): + def handle_args(self, parser, cfg, options, args): if args: parser.error('not expecting arguments')