summaryrefslogtreecommitdiff
path: root/testutils.py
diff options
context:
space:
mode:
Diffstat (limited to 'testutils.py')
-rw-r--r--testutils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/testutils.py b/testutils.py
index 6e2f1c5e0..331def008 100644
--- a/testutils.py
+++ b/testutils.py
@@ -154,7 +154,7 @@ class UnittestLinter(object):
def set_config(**kwargs):
"""Decorator for setting config values on a checker."""
def _Wrapper(fun):
- functools.wraps(fun)
+ @functools.wraps(fun)
def _Forward(self):
for key, value in kwargs.iteritems():
setattr(self.checker.config, key, value)