From: Mike Bayer Date: Wed, 18 Dec 2013 16:58:30 +0000 (-0500) Subject: since msg() right-trims, move the space to the subsequent message X-Git-Tag: rel_0_6_2~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=36b191f1f7649edf5cd72e4e41b42e34eed0d259;p=thirdparty%2Fsqlalchemy%2Falembic.git since msg() right-trims, move the space to the subsequent message --- diff --git a/alembic/util.py b/alembic/util.py index 49c72571..4f29882a 100644 --- a/alembic/util.py +++ b/alembic/util.py @@ -151,13 +151,13 @@ def coerce_resource_to_filename(fname): return fname def status(_statmsg, fn, *arg, **kw): - msg(_statmsg + " ... ", False) + msg(_statmsg + " ...", False) try: ret = fn(*arg, **kw) - write_outstream(sys.stdout, "done\n") + write_outstream(sys.stdout, " done\n") return ret except: - write_outstream(sys.stdout, "FAILED\n") + write_outstream(sys.stdout, " FAILED\n") raise def err(message):