Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/certbot/certbot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Kasten <jdkasten@umich.edu>2014-12-15 04:27:13 +0300
committerJames Kasten <jdkasten@umich.edu>2014-12-15 04:27:13 +0300
commit986387d9a21f41471ef2f470c23586146030e0a4 (patch)
treee63a52e4b3eccc817b3b7eec2d264f2830e0fa0b /.pylintrc
parent30c0cc9479b877f904a577b1b5041de2ebc5d7d6 (diff)
Fix priv function nodocs regex
Diffstat (limited to '.pylintrc')
-rw-r--r--.pylintrc2
1 files changed, 1 insertions, 1 deletions
diff --git a/.pylintrc b/.pylintrc
index 4627adccf..7d519b08e 100644
--- a/.pylintrc
+++ b/.pylintrc
@@ -171,7 +171,7 @@ method-name-hint=[a-z_][a-z0-9_]{2,30}$
# Regular expression which should only match function or class names that do
# not require a docstring.
-no-docstring-rgx=(__.*__)|(test_[A-Za-z0-9_]*)|(_*)
+no-docstring-rgx=(__.*__)|(test_[A-Za-z0-9_]*)|(_.*)
# Minimum line length for functions/classes that require docstrings, shorter
# ones are exempt.