~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to baz2bzr

  • Committer: Aaron Bentley
  • Date: 2005-07-25 14:17:15 UTC
  • Revision ID: abentley@panoramicfeedback.com-20050725141715-d410836f6e4a32c0
Got baz2bzr/annotate working now that ProgressBar is a function

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
#    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19
19
 
20
20
import sys
21
 
from errors import NoPyBaz
22
21
try:
23
22
    from baz_import import import_version, UserError
24
 
except NoPyBaz:
 
23
except:
25
24
    print >> sys.stderr, "This command requires PyBaz.  Please ensure that it is installed."
26
25
    sys.exit(1)
27
26