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
commit55729538e7def0d3ffae08b4a3fedcae68fbc7a1 (patch)
treeab5b52972c13802931fbf5e7bfc1d2a5764a49fc
parentff61bb9e028724356c72e52db66dc3204fabe448 (diff)
downloadpylint-git-55729538e7def0d3ffae08b4a3fedcae68fbc7a1.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 fa42f2379..8deaf798c 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'