diff options
author | Alexander Shorin <kxepal@apache.org> | 2015-04-05 01:18:01 +0300 |
---|---|---|
committer | Alexander Shorin <kxepal@apache.org> | 2015-04-08 21:54:12 +0300 |
commit | 3c305077a54e8fb8eabc784eb36df8653ba798fc (patch) | |
tree | a7fb9bb0f378ee575f4049f2660dae01c459d21e | |
parent | e52e00c8676de57c8f477ff18707406c05ac40f5 (diff) | |
download | couchdb-3c305077a54e8fb8eabc784eb36df8653ba798fc.tar.gz |
Print dev/run steps nicer
-rwxr-xr-x | dev/run | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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: |