diff --git a/anki/exporting.py b/anki/exporting.py index 6f4fa9df2..830c90cf3 100644 --- a/anki/exporting.py +++ b/anki/exporting.py @@ -31,7 +31,7 @@ class Exporter(object): "Escape newlines and tabs, and strip Anki HTML." text = text.replace("\n", "
") text = text.replace("\t", " " * 8) - text = re.sub('(.*?)', '\\1', text) + text = re.sub('(.*?)', '\\1', text) return text def cardIds(self):