1
0
mirror of https://github.com/openSUSE/osc.git synced 2025-01-26 06:46:13 +01:00

- core.Package.commit: make sure a _meta is created for newly added packages

Fixed typo (introduced in commit 6469efb9ed).
This commit is contained in:
Marcus Huewe 2014-03-06 10:24:49 +01:00
parent 6469efb9ed
commit 720c685868

View File

@ -1453,6 +1453,10 @@ class Package:
print('')
rev = self.latest_rev()
self.update(rev=rev)
elif self.get_local_meta() is None:
# if this was a newly added package there is no _meta
# file
self.update_local_pacmeta()
def __write_storelist(self, name, data):
if len(data) == 0:
@ -1565,7 +1569,7 @@ class Package:
# that the origin project is equal to the wc's project
meta = self.get_local_meta()
if meta is None:
return self.project
return self.prjname
root = ET.fromstring(meta)
return root.get('project')