# HG changeset patch # User Kyle Lippincott # Date 2019-01-11 20:40:16 # Node ID 99125b7fb93e2df67e72d79c0bdf50febd8ca965 # Parent 006c9ce486fa492ca043e3a85dd8c9a6cb714ab3 histedit: add newline after ui.log "# acttions to histedit" message Differential Revision: https://phab.mercurial-scm.org/D5572 diff --git a/hgext/histedit.py b/hgext/histedit.py --- a/hgext/histedit.py +++ b/hgext/histedit.py @@ -1900,7 +1900,7 @@ def _newhistedit(ui, repo, state, revs, state.topmost = topmost state.replacements = [] - ui.log("histedit", "%d actions to histedit", len(actions), + ui.log("histedit", "%d actions to histedit\n", len(actions), histedit_num_actions=len(actions)) # Create a backup so we can always abort completely.