Mercurial > hg
changeset 19947:2a03faf8b5fe stable
largefiles: fix 'unexpected response' warning newlines
Warnings should always end with \n. The warning message might contain or end
with \n, so better show it with repr encoding.
author | Mads Kiilerich <madski@unity3d.com> |
---|---|
date | Thu, 24 Oct 2013 01:49:56 +0800 |
parents | b7aec4c881d1 |
children | 72214af683a2 |
files | hgext/largefiles/proto.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/hgext/largefiles/proto.py Mon Oct 21 23:40:56 2013 +0200 +++ b/hgext/largefiles/proto.py Thu Oct 24 01:49:56 2013 +0800 @@ -96,7 +96,7 @@ self.ui.warn(_('remote: '), l, '\n') return int(d) except (ValueError, urllib2.HTTPError): - self.ui.warn(_('unexpected putlfile response: %s') % res) + self.ui.warn(_('unexpected putlfile response: %r\n') % res) return 1 # ... but we can't use sshrepository._call because the data= # argument won't get sent, and _callpush does exactly what we want