/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: Jelmer Vernooij
  • Date: 2009-05-26 07:48:03 UTC
  • mto: This revision was merged to the branch mainline in revision 4381.
  • Revision ID: jelmer@samba.org-20090526074803-fx1cdhcfcuxux8pf
Review feedback from Ian.

Show diffs side-by-side

added added

removed removed

Lines of Context:
4573
4573
            and port is an integer TCP/IP port.
4574
4574
        """
4575
4575
        host = None
4576
 
        if port is None:
4577
 
            port = None
4578
 
        else:
 
4576
        if port is not None:
4579
4577
            if ':' in port:
4580
4578
                host, port = port.split(':')
4581
4579
            port = int(port)