From 57b5ec1117a7129624f4287a21c0908ad0e9bab3 Mon Sep 17 00:00:00 2001 From: "Robin H. Johnson" Date: Mon, 24 Dec 2007 02:10:23 -0800 Subject: Ignore pylint ** warning. --- gitosis/util.py | 2 ++ 1 file changed, 2 insertions(+) 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: -- cgit v1.2.3