# HG changeset patch # User Augie Fackler # Date 1223777925 18000 # Node ID 575bd29bc1d8ce3451fa69f3dbeac4b9f687a1f2 # Parent 9c481cae0428b3554c17733daabea6c2d97b9967 Fix a missing newline. diff --git a/fetch_command.py b/fetch_command.py --- a/fetch_command.py +++ b/fetch_command.py @@ -37,7 +37,7 @@ def fetch_revisions(ui, svn_url, hg_repo ' work until you upgrade to 1.5.0 or newer. Falling back to' ' a slower method that may be buggier. Please upgrade, or' ' contribute a patch to use the ctypes bindings instead' - ' of SWIG.') + ' of SWIG.\n') have_replay = False initializing_repo = False svn = svnwrap.SubversionRepo(svn_url, username=merc_util.getuser())