summaryrefslogtreecommitdiff
path: root/tools/configure.d/nodedownload.py
diff options
context:
space:
mode:
authorSakthipriyan Vairamani <thechargingvolcano@gmail.com>2016-06-29 23:48:43 +0530
committerSakthipriyan Vairamani <thechargingvolcano@gmail.com>2016-07-08 20:17:08 +0530
commit89ede72fca942e7ceffd414e795e3d2c5e09ed0a (patch)
tree90df9669f99189e7023f7ade4284af853921e095 /tools/configure.d/nodedownload.py
parent3ae4377a4711e2814dad1080acefda5fffe1def9 (diff)
downloadandroid-node-v8-89ede72fca942e7ceffd414e795e3d2c5e09ed0a.tar.gz
android-node-v8-89ede72fca942e7ceffd414e795e3d2c5e09ed0a.tar.bz2
android-node-v8-89ede72fca942e7ceffd414e795e3d2c5e09ed0a.zip
tools: remove unnecessary imports and assignments
PR-URL: https://github.com/nodejs/node/pull/7483 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
Diffstat (limited to 'tools/configure.d/nodedownload.py')
-rw-r--r--tools/configure.d/nodedownload.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/configure.d/nodedownload.py b/tools/configure.d/nodedownload.py
index e24efd865f..5cf8e0dbd6 100644
--- a/tools/configure.d/nodedownload.py
+++ b/tools/configure.d/nodedownload.py
@@ -35,7 +35,7 @@ def retrievefile(url, targetfile):
try:
sys.stdout.write(' <%s>\nConnecting...\r' % url)
sys.stdout.flush()
- msg = ConfigOpener().retrieve(url, targetfile, reporthook=reporthook)
+ ConfigOpener().retrieve(url, targetfile, reporthook=reporthook)
print '' # clear the line
return targetfile
except: