~mvo/software-center/pygi-properties-fixes

« back to all changes in this revision

Viewing changes to softwarecenter/db/debfile.py

  • Committer: Gary Lasker
  • Date: 2012-03-29 00:18:23 UTC
  • Revision ID: gary.lasker@canonical.com-20120329001823-mbdgi4dglifaq24f
tiny pep8 fix

Show diffs side-by-side

added added

removed removed

Lines of Context:
104
104
    def description(self):
105
105
        if self._deb:
106
106
            description = self._deb._sections["Description"]
107
 
            s =  ('\n').join(description.split('\n')[1:]).replace(" .\n", "")
 
107
            s = ('\n').join(description.split('\n')[1:]).replace(" .\n", "")
108
108
            return utf8(s)
109
109
        return ""
110
110