##// END OF EJS Templates
httprepo: suppress the `real URL is...' message in safe, common cases....
Dan Villiom Podlaski Christiansen -
r9881:54b518fc default
parent child Browse files
Show More
@@ -93,7 +93,7 b' class httprepository(repo.repository):'
93 resp_url = resp.geturl()
93 resp_url = resp.geturl()
94 if resp_url.endswith(qs):
94 if resp_url.endswith(qs):
95 resp_url = resp_url[:-len(qs)]
95 resp_url = resp_url[:-len(qs)]
96 if self._url != resp_url:
96 if self._url.rstrip('/') != resp_url.rstrip('/'):
97 self.ui.status(_('real URL is %s\n') % resp_url)
97 self.ui.status(_('real URL is %s\n') % resp_url)
98 self._url = resp_url
98 self._url = resp_url
99 try:
99 try:
General Comments 0
You need to be logged in to leave comments. Login now