From e8b336efef2a7436d7a1f1b94cd556c3f20b3ab7 Mon Sep 17 00:00:00 2001 From: Sarina Canelake Date: Sun, 30 Nov 2014 00:58:34 -0500 Subject: [PATCH] s/pylint: disable=E1121/pylint: disable=too-many-function-args/ --- common/lib/xmodule/xmodule/static_content.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/lib/xmodule/xmodule/static_content.py b/common/lib/xmodule/xmodule/static_content.py index aabddf721a..a9b4512b0d 100755 --- a/common/lib/xmodule/xmodule/static_content.py +++ b/common/lib/xmodule/xmodule/static_content.py @@ -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)