From cfc458e45f792d61f7272e87e154b4b85fb574a6 Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Sat, 17 Jan 2009 22:45:00 +0900 Subject: [PATCH] fix exporting re --- anki/exporting.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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):