/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/revision.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2009-04-06 04:33:55 UTC
  • mfrom: (4031.3.3 faspell-typos)
  • Revision ID: pqm@pqm.ubuntu.com-20090406043355-a94p92pr191lpmv1
(Matt Nordhoff, Frank Aspell) Fix typos in documentation.

Show diffs side-by-side

added added

removed removed

Lines of Context:
206
206
def is_reserved_id(revision_id):
207
207
    """Determine whether a revision id is reserved
208
208
 
209
 
    :return: True if the revision is is reserved, False otherwise
 
209
    :return: True if the revision is reserved, False otherwise
210
210
    """
211
211
    return isinstance(revision_id, basestring) and revision_id.endswith(':')
212
212