diff hgext3rd/topic/__init__.py @ 5721:242a0530823a stable

cleanup: ensure log and output messages have a '\n' terminator I noticed this in a blackbox.log where the timestamp for the message after obsdiscovery:452 was merged with the previous message.
author Matt Harbison <matt_harbison@yahoo.com>
date Thu, 21 Jan 2021 15:01:19 -0500
parents 6de9ae7404ca
children 7daa67934798
line wrap: on
line diff
--- a/hgext3rd/topic/__init__.py	Wed Jan 20 14:47:22 2021 +0800
+++ b/hgext3rd/topic/__init__.py	Thu Jan 21 15:01:19 2021 -0500
@@ -1015,7 +1015,7 @@
         return
     ui.status(_(b'changed topic to "%s" on %d revisions\n') % (bmark,
               rewrote))
-    ui.debug(b'removing bookmark "%s" from "%d"' % (bmark, old))
+    ui.debug(b'removing bookmark "%s" from "%d"\n' % (bmark, old))
     bookmarks.delete(repo, tr, [bmark])
 
 def _changecurrenttopic(repo, newtopic):