diff --git a/larpe/trunk/larpe/admin/hosts.ptl b/larpe/trunk/larpe/admin/hosts.ptl index 2c1c25f..dc11279 100644 --- a/larpe/trunk/larpe/admin/hosts.ptl +++ b/larpe/trunk/larpe/admin/hosts.ptl @@ -812,7 +812,7 @@ POST request. You can desactivate some or all of them, or change their value.''' page = current_form.sub('
', page)''' % { 'auth_form_action': self.host.auth_form_action, 'name': self.host.name }) for filter in filters: - python_file.write(" r = re.compile(r\"\"\"%s\"\"\", re.DOTALL)\n" % filter["re"]) + python_file.write(" r = re.compile(r\"\"\"%s\"\"\")\n" % filter["re"]) python_file.write(" page = r.sub(r\"\"\"%s\"\"\", page)\n" % filter["sub"]) python_file.write(" return page\n") python_file.close()