aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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: