docs: apibuild: Fix for python 2.6

Ancient python didn't like the new list added in 99283874. Convert it to
a dict.
This commit is contained in:
Peter Krempa 2016-04-22 10:08:56 +02:00
parent 2d04f6de77
commit 2f745b63fd

View File

@ -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):