# HG changeset patch # User cmlenz # Date 1161093990 0 # Node ID f7a3bb316d2f8c5e2878539dc2457b06a1d82a97 # Parent 24879aa3aea7522087630f81307583e874270e1e The template engine plugin now defaults to automatically reload modified templates, as it was before the introduction of plugin config options in [359]. diff --git a/genshi/plugin.py b/genshi/plugin.py --- a/genshi/plugin.py +++ b/genshi/plugin.py @@ -42,7 +42,7 @@ self.options = options self.default_encoding = options.get('genshi.default_encoding', 'utf-8') - auto_reload = options.get('genshi.auto_reload', '').lower() \ + auto_reload = options.get('genshi.auto_reload', '1').lower() \ in ('1', 'yes', 'true') search_path = options.get('genshi.search_path', '').split(':') try: