/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/builtins.py

  • Committer: Aaron Bentley
  • Date: 2006-10-15 16:22:42 UTC
  • mfrom: (2077 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2078.
  • Revision ID: aaron.bentley@utoronto.ca-20061015162242-2de5677dd0495500
Merge from bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
2857
2857
            url = 'readonly+' + url
2858
2858
        t = get_transport(url)
2859
2859
        if inet:
2860
 
            server = smart.SmartStreamServer(sys.stdin, sys.stdout, t)
 
2860
            server = smart.SmartServerPipeStreamMedium(sys.stdin, sys.stdout, t)
2861
2861
        elif port is not None:
2862
2862
            if ':' in port:
2863
2863
                host, port = port.split(':')