equal
deleted
inserted
replaced
2967 ui.status(_('result: %s\n') % stringutil.escapedata(res)) |
2967 ui.status(_('result: %s\n') % stringutil.escapedata(res)) |
2968 ui.status(_('remote output: %s\n') % |
2968 ui.status(_('remote output: %s\n') % |
2969 stringutil.escapedata(output)) |
2969 stringutil.escapedata(output)) |
2970 else: |
2970 else: |
2971 res = peer._call(command, **pycompat.strkwargs(args)) |
2971 res = peer._call(command, **pycompat.strkwargs(args)) |
2972 ui.status(_('response: %s\n') % stringutil.escapedata(res)) |
2972 ui.status(_('response: %s\n') % stringutil.pprint(res)) |
2973 |
2973 |
2974 elif action == 'batchbegin': |
2974 elif action == 'batchbegin': |
2975 if batchedcommands is not None: |
2975 if batchedcommands is not None: |
2976 raise error.Abort(_('nested batchbegin not allowed')) |
2976 raise error.Abort(_('nested batchbegin not allowed')) |
2977 |
2977 |