/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to breezy/plugins/bash_completion/bashcomp.py

  • Committer: Breezy landing bot
  • Author(s): Jelmer Vernooij
  • Date: 2018-07-15 11:19:02 UTC
  • mfrom: (7027.6.1 python3-bashcompletion)
  • Revision ID: breezy.the.bot@gmail.com-20180715111902-m0osz3vr0zaq7yy7
Fix bash completion plugin tests on Python 3.

Merged from https://code.launchpad.net/~jelmer/brz/python3-bashcompletion/+merge/349621

Show diffs side-by-side

added added

removed removed

Lines of Context:
288
288
    def __cmp__(self, other):
289
289
        return cmp(self.name, other.name)
290
290
 
 
291
    def __lt__(self, other):
 
292
        return self.name < other.name
 
293
 
291
294
 
292
295
class DataCollector(object):
293
296