diff --git a/openerp/cli/scaffold.py b/openerp/cli/scaffold.py index fdbcfb9e4fc..dc6800d5de8 100644 --- a/openerp/cli/scaffold.py +++ b/openerp/cli/scaffold.py @@ -121,7 +121,7 @@ class template(object): os.makedirs(destdir) with open(dest, 'wb') as f: - if ext not in ('.py', '.xml', '.csv', '.js'): + if ext not in ('.py', '.xml', '.csv', '.js', '.rst', '.html'): f.write(content) else: env.from_string(content)\