~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/commands.py

- load paramiko sftp transport by default
  (will break if paramiko isn't installed)

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