diff contrib/hgclient.py @ 22572:cc3d9f776632

test-commandserver: make runcommand message bolder It seems ' runcommand' is difficult to distinguish from command output. '*** runcommand' is slightly better.
author Yuya Nishihara <yuya@tcha.org>
date Sun, 28 Sep 2014 17:21:38 +0900
parents db497a1ef1c1
children a94594f5d52f
line wrap: on
line diff
--- a/contrib/hgclient.py	Sun Sep 28 14:46:57 2014 +0900
+++ b/contrib/hgclient.py	Sun Sep 28 17:21:38 2014 +0900
@@ -32,7 +32,7 @@
 
 def runcommand(server, args, output=sys.stdout, error=sys.stderr, input=None,
                outfilter=lambda x: x):
-    print ' runcommand', ' '.join(args)
+    print '*** runcommand', ' '.join(args)
     sys.stdout.flush()
     server.stdin.write('runcommand\n')
     writeblock(server, '\0'.join(args))