From 492638035818dfb5107df50a72f728503b9c6089 Mon Sep 17 00:00:00 2001 From: Akihiro MOTOKI Date: Wed, 7 Aug 2013 03:48:29 +0900 Subject: [PATCH] Fix H102, H103 Apache 2.0 license hacking check error Closes-Bug: #1209070 This commit addresses H102 and H103 hacking check. H102 Apache 2.0 license header not found H103 Header does not match Apache 2.0 License notice Also ignores H233 hacking check in tox.ini. H233 Python 3.x incompatible use of print operator Change-Id: I081964bf0b9e21614da2f146bd3ba8d28e211024 --- tox.ini | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index c87903eb8..cfd19a5ba 100644 --- a/tox.ini +++ b/tox.ini @@ -33,10 +33,11 @@ commands = {posargs} # E711/E712 comparison to False should be 'if cond is False:' or 'if not cond:' # query = query.filter(Component.disabled == False) # E125 continuation line does not distinguish itself from next logical line +# H233 Python 3.x incompatible use of print operator # H301 one import per line # H302 import only modules # TODO(marun) H404 multi line docstring should start with a summary -ignore = E711,E712,E125,H301,H302,H404 +ignore = E711,E712,E125,H233,H301,H302,H404 show-source = true builtins = _ exclude=.venv,.git,.tox,dist,doc,*openstack/common*,*lib/python*,*egg,tools