hgext/patchbomb.py
changeset 35466 7906354cbc68
parent 35044 71e63fe6b1ab
child 35674 e711906aa42c
--- a/hgext/patchbomb.py	Mon Dec 18 17:33:08 2017 -0800
+++ b/hgext/patchbomb.py	Mon Dec 18 17:33:43 2017 -0800
@@ -632,7 +632,7 @@
     # check if revision exist on the public destination
     publicurl = repo.ui.config('patchbomb', 'publicurl')
     if publicurl:
-        repo.ui.debug('checking that revision exist in the public repo')
+        repo.ui.debug('checking that revision exist in the public repo\n')
         try:
             publicpeer = hg.peer(repo, {}, publicurl)
         except error.RepoError:
@@ -640,7 +640,7 @@
                               % publicurl)
             raise
         if not publicpeer.capable('known'):
-            repo.ui.debug('skipping existence checks: public repo too old')
+            repo.ui.debug('skipping existence checks: public repo too old\n')
         else:
             out = [repo[r] for r in revs]
             known = publicpeer.known(h.node() for h in out)