~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/registry/browser/sourcepackage.py

  • Committer: Aaron Bentley
  • Date: 2011-07-27 17:34:09 UTC
  • mto: (13316.16.3 getnewcache)
  • mto: This revision was merged to the branch mainline in revision 13548.
  • Revision ID: aaron@canonical.com-20110727173409-zljuu27tjoul1d0u
Fix lint.

Show diffs side-by-side

added added

removed removed

Lines of Context:
212
212
 
213
213
    def overview(self):
214
214
        text = 'Overview'
215
 
        summary = 'General information about {0}'.format(self.context.displayname)
 
215
        summary = 'General information about {0}'.format(
 
216
            self.context.displayname)
216
217
        return Link('', text, summary)
217
218
 
218
219
    def bugs(self):
227
228
 
228
229
    def translations(self):
229
230
        text = 'Translations'
230
 
        summary = 'Translations of {0} in Launchpad'.format(self.context.displayname)
 
231
        summary = 'Translations of {0} in Launchpad'.format(
 
232
            self.context.displayname)
231
233
        return Link('', text, summary)
232
234
 
233
235