diff hgext/largefiles/remotestore.py @ 19948:72214af683a2 stable

largefiles: add missing \n in ui.warn messages
author Mads Kiilerich <madski@unity3d.com>
date Mon, 21 Oct 2013 11:22:54 +0800
parents 9d33d6e0d442
children cce7ab960312
line wrap: on
line diff
--- a/hgext/largefiles/remotestore.py	Thu Oct 24 01:49:56 2013 +0800
+++ b/hgext/largefiles/remotestore.py	Mon Oct 21 11:22:54 2013 +0800
@@ -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())