1
0
mirror of https://github.com/openSUSE/osc.git synced 2024-12-25 17:36:13 +01:00

- minor change

This commit is contained in:
Marcus Huewe 2011-01-26 18:07:42 +01:00
parent 602abd7c1e
commit 44fbdc69f2

View File

@ -277,16 +277,13 @@ class Serviceinfo:
def readProjectFile(self, apiurl, project):
# download project wide _service file, we don't store it yet
u = makeurl(apiurl, ['source', project, "_project", "_service"])
root = None
try:
f = http_GET(u)
root = ET.parse(f).getroot()
self.read(root, True)
except urllib2.HTTPError, e:
if e.code != 404:
raise e
if root:
self.read(root, True)
def addVerifyFile(self, serviceinfo_node, filename):
import hashlib