~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to obsolete/bzr-pull

  • Committer: Aaron Bentley
  • Date: 2005-06-08 21:32:40 UTC
  • Revision ID: abentley@panoramicfeedback.com-20050608213240-6b8762b925e248b6
renamed scriptlib.py to bzrtools.py

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
from bzrlib import Branch
19
19
import sys
20
20
import os
21
 
import scriptlib
 
21
import bzrtools
22
22
import optparse
23
23
 
24
24
cur_branch = Branch(".")
31
31
    location = args[0]
32
32
else:
33
33
    location = None
34
 
scriptlib.pull(cur_branch, location, options.overwrite)
 
34
bzrtools.pull(cur_branch, location, options.overwrite)
35
35