diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2007-12-24 02:10:23 -0800 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2007-12-24 02:10:23 -0800 |
commit | 57b5ec1117a7129624f4287a21c0908ad0e9bab3 (patch) | |
tree | 921bf2030732ae9a6d92b1847b09782903e7274a /gitosis/util.py | |
parent | Move the SSH username extraction to the ssh class, and the tests over as well. (diff) | |
download | gitosis-dakkar-57b5ec1117a7129624f4287a21c0908ad0e9bab3.tar.gz gitosis-dakkar-57b5ec1117a7129624f4287a21c0908ad0e9bab3.tar.bz2 gitosis-dakkar-57b5ec1117a7129624f4287a21c0908ad0e9bab3.zip |
Ignore pylint ** warning.
Diffstat (limited to 'gitosis/util.py')
-rw-r--r-- | gitosis/util.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gitosis/util.py b/gitosis/util.py index 2da4168..628e796 100644 --- a/gitosis/util.py +++ b/gitosis/util.py @@ -29,6 +29,8 @@ def _sysfunc(func, ignore, *args, **kwds): Run the specified function, ignoring the specified errno if raised, and raising other errors. """ + # We use * and ** correctly here + # pylint: disable-msg=W0142 if not ignore: # pragma: no cover ignore = [] try: |