summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorevasquez <eric.vasquez@calxeda.com>2013-08-26 11:03:05 -0500
committerevasquez <eric.vasquez@calxeda.com>2013-08-26 11:03:05 -0500
commit11d05dd3ff877a4c77e6b7c88e7811dd51525d20 (patch)
tree06468a4f2fe06e0be6181a749cd1283a90db46c4
parent65731cb58cbc6015f3b6259622d1e2e077a37cbf (diff)
downloadcxmanage-11d05dd3ff877a4c77e6b7c88e7811dd51525d20.tar.gz
nojira: Fixed pylint warning.
-rw-r--r--cxmanage_api/node.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/cxmanage_api/node.py b/cxmanage_api/node.py
index 5d33e64..52cfe58 100644
--- a/cxmanage_api/node.py
+++ b/cxmanage_api/node.py
@@ -881,8 +881,8 @@ communication.
priority = max(int(x.priority, 16) for x in [first_part, active_part])
filename = temp_file()
- with open(filename, "w") as f:
- f.write(ubootenv.get_contents())
+ with open(filename, "w") as file_:
+ file_.write(ubootenv.get_contents())
ubootenv_image = self.image(filename, image.type, False, image.daddr,
image.skip_crc32, image.version)