summaryrefslogtreecommitdiff
path: root/doc/tools/makerst.py
diff options
context:
space:
mode:
authorAndrii Doroshenko (Xrayez) <xrayez@gmail.com>2021-04-06 17:26:18 +0300
committerAndrii Doroshenko (Xrayez) <xrayez@gmail.com>2021-04-06 17:26:18 +0300
commit679d0380430f2b9b0f852f6b6c61370e69446456 (patch)
tree8449097f6b3c3fbbfa49ff8acfed16d12aad0296 /doc/tools/makerst.py
parent55faf1c874fae5b67928395d3a35889bbb4e458b (diff)
makerst: Fix generation of overridden properties in child classes
This only affects `Object` classes, not `Variant`.
Diffstat (limited to 'doc/tools/makerst.py')
-rwxr-xr-xdoc/tools/makerst.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/tools/makerst.py b/doc/tools/makerst.py
index ae3cc73098..1c6055f8ca 100755
--- a/doc/tools/makerst.py
+++ b/doc/tools/makerst.py
@@ -437,7 +437,7 @@ def make_rst_class(class_def, state, dry_run, output_dir): # type: (ClassDef, S
for property_def in class_def.properties.values():
type_rst = property_def.type_name.to_rst(state)
default = property_def.default_value
- if property_def.overridden:
+ if default is not None and property_def.overridden:
ml.append((type_rst, property_def.name, default + " *(parent override)*"))
else:
ref = ":ref:`{0}<class_{1}_property_{0}>`".format(property_def.name, class_name)