~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/commands.py

  • Committer: Robert Collins
  • Date: 2005-10-19 10:11:57 UTC
  • mfrom: (1185.16.78)
  • mto: This revision was merged to the branch mainline in revision 1470.
  • Revision ID: robertc@robertcollins.net-20051019101157-17438d311e746b4f
mergeĀ fromĀ upstream

Show diffs side-by-side

added added

removed removed

Lines of Context:
450
450
    --profile
451
451
        Run under the Python profiler.
452
452
    """
453
 
    # Load all of the transport methods
454
 
    import bzrlib.transport.local, bzrlib.transport.http
 
453
    import bzrlib.transport
 
454
    bzrlib.transport.register_builtin_transports()
455
455
    
456
456
    argv = [a.decode(bzrlib.user_encoding) for a in argv]
457
457