Return-Path: X-Original-To: apmail-couchdb-commits-archive@www.apache.org Delivered-To: apmail-couchdb-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 0ECC417542 for ; Wed, 8 Apr 2015 18:55:53 +0000 (UTC) Received: (qmail 44601 invoked by uid 500); 8 Apr 2015 18:55:53 -0000 Delivered-To: apmail-couchdb-commits-archive@couchdb.apache.org Received: (qmail 44424 invoked by uid 500); 8 Apr 2015 18:55:52 -0000 Mailing-List: contact commits-help@couchdb.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@couchdb.apache.org Delivered-To: mailing list commits@couchdb.apache.org Received: (qmail 44405 invoked by uid 99); 8 Apr 2015 18:55:52 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 08 Apr 2015 18:55:52 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id B36A4E1021; Wed, 8 Apr 2015 18:55:52 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: kxepal@apache.org To: commits@couchdb.apache.org Date: Wed, 08 Apr 2015 18:55:54 -0000 Message-Id: In-Reply-To: <9baf8b5a8391418b895a6a5bcfa88985@git.apache.org> References: <9baf8b5a8391418b895a6a5bcfa88985@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [3/4] couchdb commit: updated refs/heads/master 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/master Commit: 3c305077a54e8fb8eabc784eb36df8653ba798fc Parents: e52e00c Author: Alexander Shorin Authored: Sun Apr 5 01:18:01 2015 +0300 Committer: Alexander Shorin 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: