aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin H. Johnson <robbat2@gentoo.org>2007-12-24 02:10:23 -0800
committerRobin H. Johnson <robbat2@gentoo.org>2007-12-24 02:10:23 -0800
commit57b5ec1117a7129624f4287a21c0908ad0e9bab3 (patch)
tree921bf2030732ae9a6d92b1847b09782903e7274a
parentMove the SSH username extraction to the ssh class, and the tests over as well. (diff)
downloadgitosis-dakkar-57b5ec1117a7129624f4287a21c0908ad0e9bab3.tar.gz
gitosis-dakkar-57b5ec1117a7129624f4287a21c0908ad0e9bab3.tar.bz2
gitosis-dakkar-57b5ec1117a7129624f4287a21c0908ad0e9bab3.zip
Ignore pylint ** warning.
-rw-r--r--gitosis/util.py2
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: