You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by kx...@apache.org on 2015/04/08 20:56:21 UTC

[7/8] couchdb commit: updated refs/heads/developer-preview-2.0 to 9f5ae10

Print dev/run steps nicer


Project: http://git-wip-us.apache.org/repos/asf/couchdb/repo
Commit: http://git-wip-us.apache.org/repos/asf/couchdb/commit/3c305077
Tree: http://git-wip-us.apache.org/repos/asf/couchdb/tree/3c305077
Diff: http://git-wip-us.apache.org/repos/asf/couchdb/diff/3c305077

Branch: refs/heads/developer-preview-2.0
Commit: 3c305077a54e8fb8eabc784eb36df8653ba798fc
Parents: e52e00c
Author: Alexander Shorin <kx...@apache.org>
Authored: Sun Apr 5 01:18:01 2015 +0300
Committer: Alexander Shorin <kx...@apache.org>
Committed: Wed Apr 8 21:54:12 2015 +0300

----------------------------------------------------------------------
 dev/run | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb/blob/3c305077/dev/run
----------------------------------------------------------------------
diff --git a/dev/run b/dev/run
index 7856add..bc8286c 100755
--- a/dev/run
+++ b/dev/run
@@ -52,7 +52,7 @@ def log(msg):
                     sys.stdout.flush()
             callargs = dict(zip(inspect.getargspec(func).args, args))
             callargs.update(kwargs)
-            print_(msg.format(**callargs) + ' ... ')
+            print_('[ * ] ' + msg.format(**callargs) + ' ... ')
             try:
                 res = func(*args, **kwargs)
             except KeyboardInterrupt: