summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/lib/Server/Plugins/TCheetah.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/Server/Plugins/TCheetah.py b/src/lib/Server/Plugins/TCheetah.py
index 8b51f5a3d..ec3214345 100644
--- a/src/lib/Server/Plugins/TCheetah.py
+++ b/src/lib/Server/Plugins/TCheetah.py
@@ -19,12 +19,13 @@ class TemplateFile(FileBacked):
def Index(self):
'''Create the template data structures'''
self.template = Template(self.data, searchList=[self.properties])
- self.template.properties = self.properties.properties
+ self.template.properties = self.properties
# put in owner permission detection
def BuildFile(self, entry, metadata):
'''Build literal file information'''
self.template.metadata = metadata
+ self.template.properties = self.properties.properties
try:
entry.text = str(self.template)
except: