[Kimchi-devel] [PATCH] Change pattern match in pep8 filtering
lvroyce at linux.vnet.ibm.com
lvroyce at linux.vnet.ibm.com
Wed Nov 19 06:00:25 UTC 2014
From: Royce Lv <lvroyce at linux.vnet.ibm.com>
Files like "./src/kimchi/i18n.py" will be warned with error by pep8
because pep8 uses wildcard searching instead of interpreting path
of file.
So change pattern to fix this problem.
Signed-off-by: Royce Lv <lvroyce at linux.vnet.ibm.com>
---
Makefile.am | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile.am b/Makefile.am
index ec88787..62b10fc 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -34,7 +34,7 @@ EXTRA_DIST = \
$(NULL)
-PEP8_BLACKLIST = src/kimchi/config.py,src/kimchi/i18n.py,tests/test_config.py
+PEP8_BLACKLIST = *src/kimchi/config.py,*src/kimchi/i18n.py,*tests/test_config.py
SKIP_PYFLAKES_ERR = "\./src/kimchi/websocket\.py"
--
1.8.3.2
More information about the Kimchi-devel
mailing list