# HG changeset patch # User Idan Kamara # Date 1313527801 -10800 # Node ID 3a661f63107ef2beb90fb49009eea9118eb8d4bc # Parent 77ebb51f5f36341dd4db786c8f0be40d4be14ee0 client: tell the server we're interactive diff -r 77ebb51f5f36 -r 3a661f63107e hglib/client.py --- a/hglib/client.py Mon Aug 15 22:46:45 2011 +0300 +++ b/hglib/client.py Tue Aug 16 23:50:01 2011 +0300 @@ -13,7 +13,8 @@ 'branch, author, desc') def __init__(self, path, encoding, configs): - args = [hglib.HGPATH, 'serve', '--cmdserver', 'pipe'] + args = [hglib.HGPATH, 'serve', '--cmdserver', 'pipe', + '--config', 'ui.interactive=True'] if path: args += ['-R', path] if configs: