##// END OF EJS Templates
largefiles: fix 'unexpected response' warning newlines...
Mads Kiilerich -
r19947:2a03faf8 stable
parent child Browse files
Show More
@@ -96,7 +96,7 b' def wirereposetup(ui, repo):'
96 self.ui.warn(_('remote: '), l, '\n')
96 self.ui.warn(_('remote: '), l, '\n')
97 return int(d)
97 return int(d)
98 except (ValueError, urllib2.HTTPError):
98 except (ValueError, urllib2.HTTPError):
99 self.ui.warn(_('unexpected putlfile response: %s') % res)
99 self.ui.warn(_('unexpected putlfile response: %r\n') % res)
100 return 1
100 return 1
101 # ... but we can't use sshrepository._call because the data=
101 # ... but we can't use sshrepository._call because the data=
102 # argument won't get sent, and _callpush does exactly what we want
102 # argument won't get sent, and _callpush does exactly what we want
General Comments 0
You need to be logged in to leave comments. Login now