~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 01:53:46 UTC
  • mfrom: (1393.1.23)
  • Revision ID: robertc@robertcollins.net-20051002015346-587422189352289e
merge from upstream newformat

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))