From f1342fa49ee05d6769a1b612bd244e38694027f0 Mon Sep 17 00:00:00 2001 From: Kieran Spear Date: Mon, 26 May 2014 13:23:18 +1000 Subject: [PATCH] Disable H803 check. H803: Git commit title should not end with period. Change-Id: I4d05b85200de234e9353c8fb26429841488fc0b2 Closes-bug: #1236621 --- tox.ini | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 75752ca..4f8e82b 100644 --- a/tox.ini +++ b/tox.ini @@ -43,4 +43,5 @@ exclude = .venv,.git,.tox,dist,doc,*openstack/common*,*lib/python*,*egg,build,p # H301 one import per line # H304 No relative imports. 'from .views import IndexView' is a relative import # H4xx docstrings -ignore = H301,H304,H4 +# H803 git commit title should not end with period (disabled on purpose, see bug #1236621) +ignore = H301,H304,H4,H803