diff fetch_command.py @ 141:6f2d67bf3039

Fix missing newlines.
author Augie Fackler <durin42@gmail.com>
date Fri, 12 Dec 2008 09:47:54 -0600
parents 9ffde8662967
children 22162380c4b9
line wrap: on
line diff
--- a/fetch_command.py
+++ b/fetch_command.py
@@ -546,7 +546,7 @@ def stupid_svn_server_pull_rev(ui, svn, 
                                      date,
                                      {'branch': 'closed-branches'})
         ha = hg_editor.repo.commitctx(current_ctx)
-        ui.status('Marked branch %s as closed.' % (b or 'default'))
+        ui.status('Marked branch %s as closed.\n' % (b or 'default'))
         hg_editor._save_metadata()
 
 class BadPatchApply(Exception):