~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/bundle/commands.py

  • Committer: John Arbash Meinel
  • Date: 2006-08-14 16:16:53 UTC
  • mto: (1946.2.6 reduce-knit-churn)
  • mto: This revision was merged to the branch mainline in revision 1919.
  • Revision ID: john@arbash-meinel.com-20060814161653-54cdcdadcd4e9003
Remove bogus entry from BRANCH.TODO

Show diffs side-by-side

added added

removed removed

Lines of Context:
142
142
            fileobj = file(output, 'wb')
143
143
        else:
144
144
            fileobj = sys.stdout
145
 
        target_branch.repository.lock_read()
146
 
        try:
147
 
            write_bundle(target_branch.repository, target_revision,
148
 
                         base_revision, fileobj)
149
 
        finally:
150
 
            target_branch.repository.unlock()
 
145
        write_bundle(target_branch.repository, target_revision, base_revision,
 
146
                     fileobj)
151
147
 
152
148
 
153
149
class cmd_verify_changeset(Command):