/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 bzrlib/tests/__init__.py

  • Committer: John Arbash Meinel
  • Date: 2009-06-22 15:47:25 UTC
  • mfrom: (4467 +trunk)
  • mto: This revision was merged to the branch mainline in revision 4469.
  • Revision ID: john@arbash-meinel.com-20090622154725-eidwkrs93j1qhmsf
Merge bzr.dev 4467 in prep for updating NEWS

Show diffs side-by-side

added added

removed removed

Lines of Context:
728
728
    def finished(self):
729
729
        """See progress.ProgressBar.finished()."""
730
730
 
731
 
    def note(self, fmt_string, *args, **kwargs):
 
731
    def note(self, fmt_string, *args):
732
732
        """See progress.ProgressBar.note()."""
733
 
        self.stdout.write((fmt_string + "\n") % args)
 
733
        if args:
 
734
            fmt_string = fmt_string % args
 
735
        self.stdout.write(fmt_string + "\n")
734
736
 
735
737
    def progress_bar(self):
736
738
        return self
3345
3347
                   'bzrlib.tests.test__chk_map',
3346
3348
                   'bzrlib.tests.test__dirstate_helpers',
3347
3349
                   'bzrlib.tests.test__groupcompress',
 
3350
                   'bzrlib.tests.test__known_graph',
3348
3351
                   'bzrlib.tests.test__rio',
3349
3352
                   'bzrlib.tests.test__walkdirs_win32',
3350
3353
                   'bzrlib.tests.test_ancestry',