diff --git a/content.py b/content.py
index a34ee002a..d1a170192 100644
--- a/content.py
+++ b/content.py
@@ -13,6 +13,7 @@ from utils import loadJson
from utils import fileLastModified
from utils import getLinkPrefixes
+
def removeQuotesWithinQuotes(content: str) -> str:
"""Removes any blockquote inside blockquote
"""
diff --git a/tests.py b/tests.py
index 9166866bf..cc0a472c8 100644
--- a/tests.py
+++ b/tests.py
@@ -2146,7 +2146,12 @@ def testReplaceEmailQuote():
"> Text2
>
> Text3
" + \
">
> Text4
>
> " + \
"Text5
>
> Text6
Text7
" - expectedStr = "Text1.
Text2
Text3
>
Text4
Text5
Text6
Text7
" + expectedStr = "" + \ + "@somenick" + \ + "
Text1.
" + \ + "Text2
Text3
>
Text4
" + \ + "
Text5
Text6
Text7
" resultStr = htmlReplaceEmailQuote(testStr) if resultStr != expectedStr: print('Result: ' + str(resultStr))