~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/commands.py

  • Committer: Robert Collins
  • Date: 2005-10-02 21:51:29 UTC
  • mfrom: (1396)
  • mto: This revision was merged to the branch mainline in revision 1397.
  • Revision ID: robertc@robertcollins.net-20051002215128-5686c7d24bf9bdb9
merge from martins newformat branch - brings in transport abstraction

Show diffs side-by-side

added added

removed removed

Lines of Context:
578
578
    --profile
579
579
        Run under the Python profiler.
580
580
    """
 
581
    # Load all of the transport methods
 
582
    import bzrlib.transport.local, bzrlib.transport.http
581
583
    
582
584
    argv = [a.decode(bzrlib.user_encoding) for a in argv]
583
585
 
669
671
            bzrlib.trace.log_exception()
670
672
            return 2
671
673
 
672
 
 
673
674
if __name__ == '__main__':
674
675
    sys.exit(main(sys.argv))