diff options
author | Tommi Virtanen <tv@eagain.net> | 2007-09-03 19:17:48 -0700 |
---|---|---|
committer | Tommi Virtanen <tv@eagain.net> | 2007-09-03 19:17:48 -0700 |
commit | e37b1dac1b379417bd609eabef2b836185434907 (patch) | |
tree | 9898bb3e190e35f80f340784b536fbfd748d8c51 /gitosis/app.py | |
parent | Add a simple "./debian/rules generate" to build debian/control. (diff) | |
download | gitosis-gentoo-e37b1dac1b379417bd609eabef2b836185434907.tar.gz gitosis-gentoo-e37b1dac1b379417bd609eabef2b836185434907.tar.bz2 gitosis-gentoo-e37b1dac1b379417bd609eabef2b836185434907.zip |
Oops, fix bad arguments. Sadly no unit tests for this part :(
Diffstat (limited to 'gitosis/app.py')
-rw-r--r-- | gitosis/app.py | 2 |
1 files changed, 1 insertions, 1 deletions
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') |