Mercurial > p > roundup > code
diff roundup/instance.py @ 4584:760483ce731e
Fix override of TemplatingUtils in instance.py.
Thanks to Cheer Xiao for the patch.
| author | Ralf Schlatterbeck <rsc@runtux.com> |
|---|---|
| date | Mon, 30 Jan 2012 14:52:14 +0100 |
| parents | 0fa45d39efee |
| children | a2eb4fb3e6d8 |
line wrap: on
line diff
--- a/roundup/instance.py Thu Jan 26 15:42:04 2012 +0100 +++ b/roundup/instance.py Mon Jan 30 14:52:14 2012 +0100 @@ -173,6 +173,7 @@ self._load_python('interfaces.py', vars) self.Client = vars.get('Client', client.Client) self.MailGW = vars.get('MailGW', mailgw.MailGW) + self.TemplatingUtils = vars.get('TemplatingUtils', templating.TemplatingUtils) def get_extensions(self, dirname): """Load python extensions
