Преглед на файлове

Nodeset: Fix parsing the EventNotifier attribute of Views

Julius Pfrommer преди 6 години
родител
ревизия
62e0c0ab40
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      tools/nodeset_compiler/nodes.py

+ 1 - 1
tools/nodeset_compiler/nodes.py

@@ -619,5 +619,5 @@ class ViewNode(Node):
         for (at, av) in xmlelement.attributes.items():
             if at == "ContainsNoLoops":
                 self.containsNoLoops = "false" not in av.lower()
-            if at == "eventNotifier":
+            if at == "EventNotifier":
                 self.eventNotifier = "false" not in av.lower()