1
Fork 0

rename variable to make sense

This commit is contained in:
Jake Howard 2016-10-15 20:51:38 +01:00
parent ba661269e2
commit ccb0627ae7
Signed by: jake
GPG Key ID: 57AFB45680EDD477
1 changed files with 3 additions and 3 deletions

View File

@ -8,10 +8,10 @@ def get_content_type(instance):
def html_to_raw(html):
summary = BeautifulSoup(html, "html.parser")
for script in summary(["script", "style"]): # Remove extra tags
parsed = BeautifulSoup(html, "html.parser")
for script in parsed(["script", "style"]): # Remove extra tags
script.extract()
return summary.get_text()
return parsed.get_text()
def get_twiter_tags(instance):