# HG changeset patch # User Marcin Kasperski # Date 1448145289 -3600 # Node ID 9d595bda6f2ff0db087cbd6f8cb6cb67832e22e1 # Parent 3f8c4b4a5cc6e81c02974bd11126eae102eecb0a Fixed buggy information printed on errors: - message lacked final newline (so further text joined it) - only first letter of path alias was printed diff -r 3f8c4b4a5cc6 -r 9d595bda6f2f mercurial_all_paths.py --- a/mercurial_all_paths.py Wed Nov 18 00:26:02 2015 +0100 +++ b/mercurial_all_paths.py Sat Nov 21 23:34:49 2015 +0100 @@ -38,7 +38,7 @@ except Exception as e: if not ignore_errors: raise - ui.warn(_('error handling %s: %s') % (path[1], e)) + ui.warn(_('error handling %s: %s\n') % (alias, e)) def pushall(ui, repo, **opts):