Browse Source

Fixed parsing of arguments which are string in filters.

pull/107/head
Simon Eisenmann 11 years ago
parent
commit
ced7f90e4c
  1. 2
      src/i18n/helpers/checkHTML.py

2
src/i18n/helpers/checkHTML.py

@ -26,7 +26,7 @@ def main(templates, output_folder=None):
fp.close() fp.close()
html = unicode(html, "UTF-8") html = unicode(html, "UTF-8")
html = re.sub(r"\|(\w|:)+", "", html) html = re.sub(r"\|(\w|:|\"|\')+", "", html)
if output_folder: if output_folder:
tf = os.path.join(output_folder, os.path.split(fn)[1]) tf = os.path.join(output_folder, os.path.split(fn)[1])

Loading…
Cancel
Save