From 351264bd7deff3fdf6e393581560b4d994c1dbfa Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Sat, 16 Mar 2013 19:07:34 -0400 Subject: A simple correction from future pylint --- .pylintrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pylintrc b/.pylintrc index 836136f9..f11174b4 100644 --- a/.pylintrc +++ b/.pylintrc @@ -131,7 +131,7 @@ no-docstring-rgx=__.*__|test[A-Z_].*|setUp|tearDown module-rgx=(([a-z_][a-z0-9_]*)|([A-Z][a-zA-Z0-9]+))$ # Regular expression which should only match correct module level names -const-rgx=(([A-Z_][A-Z1-9_]*)|(__.*__))$ +const-rgx=(([A-Z_][A-Z0-9_]*)|(__.*__))$ # Regular expression which should only match correct class names class-rgx=[A-Z_][a-zA-Z0-9]+$ -- cgit v1.2.1