summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/lib/Server/Core.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/lib/Server/Core.py b/src/lib/Server/Core.py
index 07d210815..852234dd6 100644
--- a/src/lib/Server/Core.py
+++ b/src/lib/Server/Core.py
@@ -261,6 +261,9 @@ class Core(object):
def BindStructure(self, structure, metadata):
'''Bind a complete structure'''
for entry in structure.getchildren():
+ if entry.tag.startswith("Bound"):
+ entry.tag = entry.tag[5:]
+ continue
try:
self.Bind(entry, metadata)
except PluginExecutionError: