httppeer: unify hint message for PeerTransportError

Another raising PeerTransportError for "incomplete response" in
httppeer.py uses this (changed) hint message. This unification reduces
cost of translation.
This commit is contained in:
FUJIWARA Katsunori 2017-05-01 05:52:36 +09:00
parent 1ff2143781
commit 60903a6565

View File

@ -80,7 +80,7 @@ def _wraphttpresponse(resp):
except httplib.HTTPException as e:
raise error.PeerTransportError(
_('HTTP request error (%s)') % e,
hint=_('this may be an intermittent failure; '
hint=_('this may be an intermittent network failure; '
'if the error persists, consider contacting the '
'network or server operator'))