From f5a931bb07e66871094e6abdb9409d56be889117 Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Mon, 25 Oct 2010 13:08:39 +0900 Subject: [PATCH] typo in bold fix --- ankiqt/ui/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ankiqt/ui/utils.py b/ankiqt/ui/utils.py index 4d9e4028f..199d2ddd7 100644 --- a/ankiqt/ui/utils.py +++ b/ankiqt/ui/utils.py @@ -240,7 +240,7 @@ def mungeQA(deck, txt): txt = renderLatex(deck, txt) txt = stripSounds(txt) # osx webkit doesn't understand font weight 600 - txt = re.sub("font-weight:.+?;", "font-weight: bold", txt) + txt = re.sub("font-weight:.+?;", "font-weight: bold;", txt) return txt def applyStyles(widget):