]> git.ipfire.org Git - thirdparty/sqlalchemy/alembic.git/commitdiff
since msg() right-trims, move the space to the subsequent message
authorMike Bayer <mike_mp@zzzcomputing.com>
Wed, 18 Dec 2013 16:58:30 +0000 (11:58 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Wed, 18 Dec 2013 16:58:30 +0000 (11:58 -0500)
alembic/util.py

index 49c725719b4783b009611c2969abafc448a43feb..4f29882a4828a56fea420aec295ee2b11a14afeb 100644 (file)
@@ -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):