mirror of
https://github.com/django/django.git
synced 2025-10-01 06:21:20 +00:00
Removed unnecessary function-level import.
This commit is contained in:
parent
db41778e8c
commit
3eb58f0dd1
1 changed files with 0 additions and 1 deletions
|
@ -290,7 +290,6 @@ def clean_html(text):
|
||||||
* Remove stuff like "<p> </p>", but only if it's at the
|
* Remove stuff like "<p> </p>", but only if it's at the
|
||||||
bottom of the text.
|
bottom of the text.
|
||||||
"""
|
"""
|
||||||
from django.utils.text import normalize_newlines
|
|
||||||
text = normalize_newlines(text)
|
text = normalize_newlines(text)
|
||||||
text = re.sub(r'<(/?)\s*b\s*>', '<\\1strong>', text)
|
text = re.sub(r'<(/?)\s*b\s*>', '<\\1strong>', text)
|
||||||
text = re.sub(r'<(/?)\s*i\s*>', '<\\1em>', text)
|
text = re.sub(r'<(/?)\s*i\s*>', '<\\1em>', text)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue