Skip to content
Snippets Groups Projects
Commit 72214af6 authored by Mads Kiilerich's avatar Mads Kiilerich
Browse files

largefiles: add missing \n in ui.warn messages

parent 2a03faf8
Branches
Tags
No related merge requests found
......@@ -40,7 +40,7 @@
tmpfp.close()
lfutil.linktousercache(repo, sha)
except IOError, e:
repo.ui.warn(_('largefiles: failed to put %s into store: %s') %
repo.ui.warn(_('largefiles: failed to put %s into store: %s\n') %
(sha, e.strerror))
return wireproto.pushres(1)
finally:
......
......@@ -26,7 +26,7 @@
_('remotestore: could not put %s to remote store %s')
% (source, self.url))
self.ui.debug(
_('remotestore: put %s to remote store %s') % (source, self.url))
_('remotestore: put %s to remote store %s\n') % (source, self.url))
def exists(self, hashes):
return dict((h, s == 0) for (h, s) in self._stat(hashes).iteritems())
......
......@@ -1678,6 +1678,7 @@
pushing to http://localhost:$HGPORT1/
searching for changes
remote: largefiles: failed to put 4cdac4d8b084d0b599525cf732437fb337d422a8 into store: largefile contents do not match hash
abort: remotestore: could not put $TESTTMP/r7/.hg/largefiles/4cdac4d8b084d0b599525cf732437fb337d422a8 to remote store http://localhost:$HGPORT1/ (glob)
[255]
$ mv 4cdac4d8b084d0b599525cf732437fb337d422a8 r7/.hg/largefiles/4cdac4d8b084d0b599525cf732437fb337d422a8
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment