1
0
mirror of https://github.com/openSUSE/osc.git synced 2024-09-20 01:06:17 +02:00

- fixed testsuite (and indention)

Broken by commit 0e3641610e
This commit is contained in:
Marcus Huewe 2014-04-16 15:56:59 +02:00
parent 0e3641610e
commit c398cb344a

View File

@ -1684,9 +1684,9 @@ class Package:
"""
meta = show_package_meta(self.apiurl, self.prjname, self.name)
if meta != "":
# is empty for _project for example
meta = ''.join(show_package_meta(self.apiurl, self.prjname, self.name))
store_write_string(self.absdir, '_meta', meta + '\n')
# is empty for _project for example
meta = ''.join(meta)
store_write_string(self.absdir, '_meta', meta + '\n')
def findfilebyname(self, n):
for i in self.filelist: