Replace pycurl library in osmclient by requests library
[osm/osmclient.git] / osmclient / sol005 / vnfd.py
index 0a2b772..3c09707 100644 (file)
@@ -329,11 +329,7 @@ class Vnfd(object):
                 special_override_string = special_override_string.rstrip(";")
 
             headers["Content-File-MD5"] = utils.md5(filename)
-            http_header = [
-                "{}: {}".format(key, val) for (key, val) in list(headers.items())
-            ]
-
-            self._http.set_http_header(http_header)
+            self._http.set_http_header(headers)
             if update_endpoint:
                 http_code, resp = self._http.put_cmd(
                     endpoint=update_endpoint, filename=filename