From: Peter Krempa Date: Fri, 22 Apr 2016 08:08:56 +0000 (+0200) Subject: docs: apibuild: Fix for python 2.6 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=2f745b63fda7765178b2d69584183b9af821fa4f;p=libvirt.git docs: apibuild: Fix for python 2.6 Ancient python didn't like the new list added in 99283874. Convert it to a dict. --- 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):