Update skip pep8 clause to use hacking

Now that projects don't directly use pep8 anymore but rather hacking,
update the ignore pep8 clause to say hacking.

Related patch to ignore hacking in the requirements sync check:
I114b05fb1ec99ec1e0e0162988edb5fa5517df46

Change-Id: Ib21646db18220b40db505856f4796c3d51228abc
This commit is contained in:
Joe Gordon 2014-06-17 14:52:26 -07:00
parent a41201f0be
commit 9ee5d599a0
1 changed files with 2 additions and 2 deletions

View File

@ -130,8 +130,8 @@ def _sync_requirements_file(source_reqs, dev_reqs, dest_path, suffix):
old_pip = _parse_pip(old_require.lower())
# Special cases:
# projects need to align pep8 version on their own time
if "pep8" in old_pip:
# projects need to align hacking version on their own time
if "hacking" in old_pip:
new_reqs.write(old_line)
continue