/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

[merge] Fix for bug 354036 ErrorFromSmartServer - AbsentContentFactory object
has no attribute 'get_bytes_as' exception while pulling from Launchpad
(Jean-Francois Roy, Andrew Bennetts, Robert Collins)

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