summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorevasquez <eric.vasquez@calxeda.com>2013-08-27 08:56:42 -0500
committerevasquez <eric.vasquez@calxeda.com>2013-08-27 08:56:42 -0500
commitc4d0f51633d3a9485541146b4213e543f6d13b0f (patch)
treeffdae97b8d1acb17a72117976aa5ae681140cfac
parent46e57fd22500e33ae807ab6302105381d91d3745 (diff)
downloadcxmanage-c4d0f51633d3a9485541146b4213e543f6d13b0f.tar.gz
nojira: pylint
-rw-r--r--cxmanage_api/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/cxmanage_api/__init__.py b/cxmanage_api/__init__.py
index 6d66381..4e7c0e4 100644
--- a/cxmanage_api/__init__.py
+++ b/cxmanage_api/__init__.py
@@ -50,8 +50,8 @@ def temp_file():
:rtype: string
"""
- fd, filename = tempfile.mkstemp(dir=WORK_DIR)
- os.close(fd)
+ file_, filename = tempfile.mkstemp(dir=WORK_DIR)
+ os.close(file_)
return filename
def temp_dir():