/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/transport/__init__.py

  • Committer: Robert Collins
  • Date: 2007-11-07 13:10:37 UTC
  • mfrom: (2974 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2975.
  • Revision ID: robertc@robertcollins.net-20071107131037-1sl8cq53pxb9qzhv
Merge bzr.dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1356
1356
            except ValueError:
1357
1357
                raise errors.InvalidURL('invalid port number %s in url:\n%s' %
1358
1358
                                        (port, url))
 
1359
        if host == '':
 
1360
            raise errors.InvalidURL('Host empty in: %s' % url)
 
1361
 
1359
1362
        host = urllib.unquote(host)
1360
1363
        path = urllib.unquote(path)
1361
1364