summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSylvain Th?nault <sylvain.thenault@logilab.fr>2009-11-25 18:13:10 +0100
committerSylvain Th?nault <sylvain.thenault@logilab.fr>2009-11-25 18:13:10 +0100
commit20c69939196c25a7961e9fd6bd4cbd19d9e409fd (patch)
tree7a32d43040452766c3d498c743bd1b8efeac9a7c
parent4ec4b76ecfb569b11d6ab9d26a9b391b5a41207a (diff)
downloadpylint-20c69939196c25a7961e9fd6bd4cbd19d9e409fd.tar.gz
missing __revision__ to avoid failure
-rw-r--r--test/input/func_noerror_function_as_method.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/input/func_noerror_function_as_method.py b/test/input/func_noerror_function_as_method.py
index fa42f23..8deaf79 100644
--- a/test/input/func_noerror_function_as_method.py
+++ b/test/input/func_noerror_function_as_method.py
@@ -1,6 +1,7 @@
# pylint: disable-msg=R0903
'''Test that a function is considered a method when looked up through a class.
'''
+__revision__ = 1
class Clazz(object):
'test class'