diff mercurial/dispatch.py @ 35466:7906354cbc68

debug: add newlines at the end of three locations that appear to need it Differential Revision: https://phab.mercurial-scm.org/D1720
author Kyle Lippincott <spectral@google.com>
date Mon, 18 Dec 2017 17:33:43 -0800
parents 08f28f58f863
children 48fe4f56a3b4
line wrap: on
line diff
--- a/mercurial/dispatch.py	Mon Dec 18 17:33:08 2017 -0800
+++ b/mercurial/dispatch.py	Mon Dec 18 17:33:43 2017 -0800
@@ -451,7 +451,7 @@
                         return m.group()
                     else:
                         ui.debug("No argument found for substitution "
-                                 "of %i variable in alias '%s' definition."
+                                 "of %i variable in alias '%s' definition.\n"
                                  % (int(m.groups()[0]), self.name))
                         return ''
                 cmd = re.sub(br'\$(\d+|\$)', _checkvar, self.definition[1:])