Commit 33c4dc2c authored by Aurel's avatar Aurel

fix cache key to be more unique

parent d4e425c3
......@@ -189,7 +189,7 @@ class IntegrationSite(Folder):
property = string of the property we want the mapping
"""
tv = getTransactionalVariable()
key = "%s" % (base_mapping.getPath(),)
key = "%s-%s" % (base_mapping.getPath(), property_name)
try:
mapping_line = tv[key]
except KeyError:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment