~jconti/ubuntu/precise/emesene/fix-956422

« back to all changes in this revision

Viewing changes to UserList.py

  • Committer: Bazaar Package Importer
  • Author(s): Devid Antonio Filoni
  • Date: 2010-04-14 01:33:51 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20100414013351-r2icbt5gs4ai71j8
Tags: 1.6.1-0ubuntu1
* New upstream release (LP: #562646).
* Fix missing-debian-source-format lintian warning.
* Refresh 20_dont_build_own_libmimic.patch patch.
* Bump Standards-Version to 3.8.4.

Show diffs side-by-side

added added

removed removed

Lines of Context:
533
533
    def getGroupLabel(self, group):
534
534
        '''return the pango string to format the group'''
535
535
        if self.showCountContact:
 
536
            if group.id == 'nogroup':
 
537
                return '<b>%s ( %d/%d )</b>' % (_('No group'), \
 
538
                group.getOnlineUsersNumber(), group.getSize())
 
539
 
536
540
            return '<b>%s ( %d/%d )</b>' % (escape(group.name), \
537
541
                group.getOnlineUsersNumber(), group.getSize())
538
542
        else: