From e321e0110c0e6f37be4396b486d0429ba154df2b Mon Sep 17 00:00:00 2001 From: Myhailo Chernyshov Date: Thu, 30 Jan 2025 16:58:44 +0200 Subject: [PATCH] fix: [FC-0063] LTI nodes lookup is fixed --- src/cc2olx/xml/cc_xml.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/cc2olx/xml/cc_xml.py b/src/cc2olx/xml/cc_xml.py index b0871a6..93efad6 100644 --- a/src/cc2olx/xml/cc_xml.py +++ b/src/cc2olx/xml/cc_xml.py @@ -92,7 +92,10 @@ class BasicLtiLink(CommonCartridgeElementBase): "lticp": "http://www.imsglobal.org/xsd/imslticp_v1p0", "lticm": "http://www.imsglobal.org/xsd/imslticm_v1p0", } - NODE_NAMESPACES = ["http://www.imsglobal.org/xsd/imslticc_v1p0"] + NODE_NAMESPACES = [ + "http://www.imsglobal.org/xsd/imslticc_v1p0", + "http://www.imsglobal.org/xsd/imslticc_v1p3", + ] NODE_NAME = "cartridge_basiclti_link" @property