~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to __init__.py

  • Committer: John Arbash Meinel
  • Date: 2005-07-10 16:20:25 UTC
  • mto: (0.5.85) (1185.82.1 bzr-w-changeset)
  • mto: This revision was merged to the branch mainline in revision 1738.
  • Revision ID: john@arbash-meinel.com-20050710162025-010e82b26b3f6f84
Some fixups for gen_changeset.

Show diffs side-by-side

added added

removed removed

Lines of Context:
97
97
            if base_revno is None or base_revno == -1:
98
98
                base_rev_id = base_branch.last_patch()
99
99
            else:
100
 
                base_rev_id = base_branch.last_patch()
 
100
                base_rev_id = base_branch.lookup_revision(base_revno)
101
101
 
102
102
        outf = codecs.getwriter(bzrlib.user_encoding)(sys.stdout,
103
103
                errors='replace')