From 0fe35b573ab4b866f258a640055b5a73629d0a03 Mon Sep 17 00:00:00 2001 From: Adam Johnson Date: Mon, 23 Aug 2021 17:52:59 -0400 Subject: [PATCH] Fix traceback in `pre_export()` handling. --- korman/exporter/convert.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/korman/exporter/convert.py b/korman/exporter/convert.py index 6711756..20212fe 100644 --- a/korman/exporter/convert.py +++ b/korman/exporter/convert.py @@ -429,7 +429,7 @@ class Exporter: # If the object is marked as a Plasma Object, be sure that we go into the same page # as the requestor, unless the modifier decided it knows better. - if not temporary.plasma_object.property_set("page"): + if not temporary.plasma_object.is_property_set("page"): temporary.plasma_object.page = parent.plasma_object.page # Wow, recursively generated objects. Aren't you special?