# HG changeset patch # User Jeff Hammel # Date 1376182668 25200 # Node ID 81a237bcf3b69c908362c32ed1cb5350a01f0fc1 # Parent f7c49c61f092a8e7d378517ef535ca09c4aad45c python/setup_repo.py diff -r f7c49c61f092 -r 81a237bcf3b6 python/setup_repo.py --- a/python/setup_repo.py Sat Aug 10 17:53:33 2013 -0700 +++ b/python/setup_repo.py Sat Aug 10 17:57:48 2013 -0700 @@ -52,8 +52,9 @@ """ # parse remote URL - host, netloc, path, query, anchor = urlparse.urlsplit(remote_url) + scheme, netloc, path, query, anchor = urlparse.urlsplit(remote_url) path = path.rstrip('/') + host = netloc # -> host, port, etc # derive name if name is None: