~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to send_changeset.py

  • Committer: John Arbash Meinel
  • Date: 2005-06-29 06:59:45 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-20050629065945-14a14a6514d5fa46
Updated so that read_changeset is able to parse the output

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
    import send_changeset
22
22
    from cStringIO import StringIO
23
23
 
24
 
    base_rev_id, target_rev_id = gen_changeset._canonicalize_revision(branch, revisions)
 
24
    base_rev_id, target_rev_id = common.canonicalize_revision(branch, revisions)
25
25
    rev = branch.get_revision(target_rev_id)
26
26
    if not message:
27
27
        message = rev.message.split('\n')[0]