From: John Ferlan Date: Thu, 15 Mar 2018 20:17:05 +0000 (-0400) Subject: docs: Fix apibuild.py syntax X-Git-Tag: v4.2.0-rc1~139 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8635b1f6b394e4b018ec410cf21032d68971f635;p=thirdparty%2Flibvirt.git 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 --- 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