Skip to content

Commit

Permalink
- fixed testsuite (and indention)
Browse files Browse the repository at this point in the history
Broken by commit 0e36416
  • Loading branch information
marcus-h committed Apr 16, 2014
1 parent 0e36416 commit c398cb3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions osc/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -1684,9 +1684,9 @@ def update_local_pacmeta(self):
"""
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:
Expand Down

0 comments on commit c398cb3

Please sign in to comment.