~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-15 21:35:53 UTC
  • mfrom: (907.1.57)
  • mto: (1393.2.1)
  • mto: This revision was merged to the branch mainline in revision 1396.
  • Revision ID: john@arbash-meinel.com-20050915213552-a6c83a5ef1e20897
(broken) Transport work is merged in. Tests do not pass yet.

Show diffs side-by-side

added added

removed removed

Lines of Context:
587
587
    --profile
588
588
        Run under the Python profiler.
589
589
    """
 
590
    # Load all of the transport methods
 
591
    import bzrlib.transport.local, bzrlib.transport.http
590
592
    
591
593
    argv = [a.decode(bzrlib.user_encoding) for a in argv]
592
594
 
674
676
            bzrlib.trace.log_exception()
675
677
            return 2
676
678
 
677
 
 
678
679
if __name__ == '__main__':
679
680
    sys.exit(main(sys.argv))