From 2f745b63fda7765178b2d69584183b9af821fa4f Mon Sep 17 00:00:00 2001 From: Peter Krempa Date: Fri, 22 Apr 2016 10:08:56 +0200 Subject: [PATCH] docs: apibuild: Fix for python 2.6 Ancient python didn't like the new list added in 99283874. Convert it to a dict. --- docs/apibuild.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/apibuild.py b/docs/apibuild.py index 9c82c4a5e8..888275900b 100755 --- a/docs/apibuild.py +++ b/docs/apibuild.py @@ -114,8 +114,8 @@ ignored_macros = { # macros that should be completely skipped hidden_macros = { - "VIR_DEPRECATED", # internal macro to mark deprecated apis - "VIR_EXPORT_VAR", # internal macro to mark exported vars + "VIR_DEPRECATED": "internal macro to mark deprecated apis", + "VIR_EXPORT_VAR": "internal macro to mark exported vars", } def escape(raw):