From e00b408fe5d27630b4052c29da86f5ae33b9258f Mon Sep 17 00:00:00 2001
From: mAAdhaTTah
Date: Tue, 26 Jun 2018 11:32:31 -0400
Subject: [PATCH] Remove extraneous class
---
examples/prism-python.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/examples/prism-python.html b/examples/prism-python.html
index 3309732bda..ca7a397e99 100644
--- a/examples/prism-python.html
+++ b/examples/prism-python.html
@@ -58,7 +58,7 @@ Known failures
Triple-quoted strings with what look like strings inside
-def antique(string):
+def antique(string):
"""Replace anachronistic Latin "j" with "i"."""
return string.replace("j", "i").replace("J", "I")