~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/bugtracker.py

  • Committer: Jonathan Lange
  • Date: 2007-04-17 07:59:42 UTC
  • mto: This revision was merged to the branch mainline in revision 2446.
  • Revision ID: jml@canonical.com-20070417075942-1vfzpwjf8rvbty1f
Variety of whitespace cleanups, tightening of tests and docstring changes in
response to review of bug support.

Show diffs side-by-side

added added

removed removed

Lines of Context:
87
87
        return urlutils.join(self.base_url, bug_id)
88
88
 
89
89
    def check_bug_id(self, bug_id):
90
 
        """Check that the bug_id is valid."""
91
 
        pass
 
90
        """Check that the bug_id is valid.
 
91
 
 
92
        The base implementation assumes that all bug_ids are valid.
 
93
        """
92
94
 
93
95
 
94
96
class UniqueIntegerBugTracker(UniqueBugTracker):