From 7fa1e67fb01d55bc51141aae045a0e9dac61d087 Mon Sep 17 00:00:00 2001 From: Ed Bartosh Date: Wed, 3 Apr 2013 18:35:22 +0300 Subject: [PATCH] Fixed bug in oscapi/get_meta API This is actually a typo. I had this in the code, but somehow lost in comit :( Change-Id: If5699c4f2373563979dd965d8d0e780429ca71c9 Signed-off-by: Ed Bartosh --- gitbuildsys/oscapi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gitbuildsys/oscapi.py b/gitbuildsys/oscapi.py index d11e36f..d31d202 100644 --- a/gitbuildsys/oscapi.py +++ b/gitbuildsys/oscapi.py @@ -347,7 +347,7 @@ class OSC(object): """Get project/package meta.""" metatype, path_args = self.get_path(prj, pkg) url = core.make_meta_url(metatype, path_args, self.apiurl) - return self.core_http(core.http_GET, url) + return self.core_http(core.http_GET, url).read() def set_meta(self, meta, prj, pkg=None): """Set project/package meta.""" -- 2.34.1