From 8635b1f6b394e4b018ec410cf21032d68971f635 Mon Sep 17 00:00:00 2001 From: John Ferlan Date: Thu, 15 Mar 2018 16:17:05 -0400 Subject: [PATCH] docs: Fix apibuild.py syntax Commit id '477502de3' altered the entry to add one too many closing parenthesis ')' and that propagated into commit id '9176b42bd'. Signed-off-by: John Ferlan --- docs/apibuild.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/apibuild.py b/docs/apibuild.py index ba359c98cd..67b7eed1e6 100755 --- a/docs/apibuild.py +++ b/docs/apibuild.py @@ -478,7 +478,7 @@ class CLexer: if line[0] == '#': self.tokens = list(map((lambda x: ('preproc', x)), - line.split()))) + line.split())) # We might have whitespace between the '#' and preproc # macro name, so instead of having a single token element -- GitLab