summaryrefslogtreecommitdiffstats
path: root/deploy/deploy-config.py
diff options
context:
space:
mode:
authorJonas Bjurel <jonas.bjurel@ericsson.com>2016-04-08 09:59:41 +0000
committerGerrit Code Review <gerrit@172.30.200.206>2016-04-08 09:59:41 +0000
commit2bf79e8ab955b189c3d806b678b8f11c4966331d (patch)
tree8078fce73ea20fef66de41cc2b05a2bad481724f /deploy/deploy-config.py
parente16db49f05f21196caaa3cc4fb09c0b99a0194e6 (diff)
parent18171a86a7d2b5cda035281ed0fdd3dcb8fbad36 (diff)
Merge "Remove duplicate import of hashlib"
Diffstat (limited to 'deploy/deploy-config.py')
-rw-r--r--deploy/deploy-config.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/deploy/deploy-config.py b/deploy/deploy-config.py
index d02a93717..65d51b228 100644
--- a/deploy/deploy-config.py
+++ b/deploy/deploy-config.py
@@ -90,7 +90,6 @@ def setup_yaml():
yaml.add_representer(collections.OrderedDict, represent_dict_order)
def sha_uri(uri):
- import hashlib
response = urllib2.urlopen(uri)
data = response.read()
sha1 = hashlib.sha1()