From: Ed Bartosh Date: Wed, 3 Apr 2013 15:35:22 +0000 (+0300) Subject: Fixed bug in oscapi/get_meta API X-Git-Tag: 0.16~28 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7fa1e67fb01d55bc51141aae045a0e9dac61d087;p=tools%2Fgbs.git 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 --- 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."""