From 18171a86a7d2b5cda035281ed0fdd3dcb8fbad36 Mon Sep 17 00:00:00 2001
From: Peter Barabas <peter.barabas@ericsson.com>
Date: Thu, 7 Apr 2016 08:09:25 +0200
Subject: Remove duplicate import of hashlib

Change-Id: I306b8260ea37fb32ef8db8cf5d4628b50328027f
Signed-off-by: Peter Barabas <peter.barabas@ericsson.com>
---
 deploy/deploy-config.py | 1 -
 1 file changed, 1 deletion(-)

(limited to 'deploy')

diff --git a/deploy/deploy-config.py b/deploy/deploy-config.py
index d1e9cd47a..7e79b9df5 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()
-- 
cgit