Disable H803 check.

H803: Git commit title should not end with period.

Change-Id: I4d05b85200de234e9353c8fb26429841488fc0b2
Closes-bug: #1236621
This commit is contained in:
Kieran Spear 2014-05-26 13:23:18 +10:00
parent bf9c7f37d2
commit f1342fa49e
1 changed files with 2 additions and 1 deletions

View File

@ -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