~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/commands.py

  • Committer: John Arbash Meinel
  • Date: 2005-09-29 20:34:25 UTC
  • mfrom: (1185.11.24)
  • mto: (1393.1.12)
  • mto: This revision was merged to the branch mainline in revision 1396.
  • Revision ID: john@arbash-meinel.com-20050929203425-7fc2ea87f449dfe8
Merged in split-storage-2 branch. Need to cleanup a little bit more still.

Show diffs side-by-side

added added

removed removed

Lines of Context:
571
571
    --profile
572
572
        Run under the Python profiler.
573
573
    """
 
574
    # Load all of the transport methods
 
575
    import bzrlib.transport.local, bzrlib.transport.http
574
576
    
575
577
    argv = [a.decode(bzrlib.user_encoding) for a in argv]
576
578
 
662
664
            bzrlib.trace.log_exception()
663
665
            return 2
664
666
 
665
 
 
666
667
if __name__ == '__main__':
667
668
    sys.exit(main(sys.argv))