From f2bca93e2b447aa2a691045828b444cef6682bfb Mon Sep 17 00:00:00 2001 From: Michael Hanselmann <hansmi@google.com> Date: Tue, 11 Dec 2012 17:03:38 +0100 Subject: [PATCH] Generated RPC code: Don't write whitespace after paren There is no obvious need for this space--the line would wrap at the next space, which comes soon after. Signed-off-by: Michael Hanselmann <hansmi@google.com> Reviewed-by: Guido Trotter <ultrotter@google.com> --- autotools/build-rpc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autotools/build-rpc b/autotools/build-rpc index 460f0df59..2de71d540 100755 --- a/autotools/build-rpc +++ b/autotools/build-rpc @@ -151,7 +151,7 @@ def _WriteBaseClass(sw, clsname, calls): buf.write("return ") # In case line gets too long and is wrapped in a bad spot - buf.write("( ") + buf.write("(") buf.write("self._Call(_def, ") if kind == _SINGLE: -- GitLab