From 36b191f1f7649edf5cd72e4e41b42e34eed0d259 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Wed, 18 Dec 2013 11:58:30 -0500 Subject: [PATCH] since msg() right-trims, move the space to the subsequent message --- alembic/util.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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): -- 2.47.2