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

  • Committer: Ian Clatworthy
  • Date: 2010-04-08 06:05:44 UTC
  • mfrom: (5126.1.4 517800-update-dotted-rev)
  • mto: This revision was merged to the branch mainline in revision 5140.
  • Revision ID: ian.clatworthy@canonical.com-20100408060544-dshzbmikgyv7ccyj
Merge update -r dotted-revno support

Show diffs side-by-side

added added

removed removed

Lines of Context:
2258
2258
            last_rev = _mod_revision.NULL_REVISION
2259
2259
        if revision is None:
2260
2260
            revision = self.branch.last_revision()
2261
 
        else:
2262
 
            if revision not in self.branch.revision_history():
2263
 
                raise errors.NoSuchRevision(self.branch, revision)
2264
2261
 
2265
2262
        old_tip = old_tip or _mod_revision.NULL_REVISION
2266
2263