s/pylint: disable=E1121/pylint: disable=too-many-function-args/

This commit is contained in:
Sarina Canelake
2014-11-30 00:58:34 -05:00
parent c904bd70cd
commit e8b336efef

View File

@@ -171,7 +171,7 @@ def _write_files(output_root, contents, generated_suffix_map=None):
# not_file is included to short-circuit this check, because
# read_md5 depends on the file already existing
write_file = not_file or output_file.read_md5() != hashlib.md5(file_content).digest() # pylint: disable=E1121
write_file = not_file or output_file.read_md5() != hashlib.md5(file_content).digest() # pylint: disable=too-many-function-args
if write_file:
LOG.debug("Writing %s", output_file)
output_file.write_bytes(file_content)