diff hgext/largefiles/proto.py @ 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 cff331cbb5ee
children 72214af683a2
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