From 2cd38a0bf83cc7c7cc5eb59dffc3d7868cf6d452 Mon Sep 17 00:00:00 2001 From: Conley Owens Date: Tue, 4 Feb 2014 15:32:29 -0800 Subject: [PATCH] Stop appending 'p/' to review urls Gerrit no longer requires 'p/', and this causes unexpected behavior. In this change we stop appending 'p/' to the urls. Change-Id: I72c13bf838f4112086141959fb1af249f9213ce6 --- git_config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git_config.py b/git_config.py index af09ebae..32879ec7 100644 --- a/git_config.py +++ b/git_config.py @@ -604,7 +604,7 @@ class Remote(object): # of HTML response back, like maybe a login page. # # Assume HTTP if SSH is not enabled or ssh_info doesn't look right. - self._review_url = http_url + 'p/' + self._review_url = http_url else: host, port = info.split() self._review_url = self._SshReviewUrl(userEmail, host, port)