~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/revision.py

  • Committer: Frank Aspell
  • Date: 2009-02-22 16:54:02 UTC
  • mto: This revision was merged to the branch mainline in revision 4256.
  • Revision ID: frankaspell@googlemail.com-20090222165402-2myrucnu7er5w4ha
Fixing various typos

Show diffs side-by-side

added added

removed removed

Lines of Context:
171
171
def is_reserved_id(revision_id):
172
172
    """Determine whether a revision id is reserved
173
173
 
174
 
    :return: True if the revision is is reserved, False otherwise
 
174
    :return: True if the revision is reserved, False otherwise
175
175
    """
176
176
    return isinstance(revision_id, basestring) and revision_id.endswith(':')
177
177