diff options
Diffstat (limited to 'app')
-rw-r--r-- | app/utils/widgets.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/utils/widgets.py b/app/utils/widgets.py index 3309978..104fcdf 100644 --- a/app/utils/widgets.py +++ b/app/utils/widgets.py @@ -162,7 +162,7 @@ def parse_image(s): def parse_video(s): - soup = BeautifulSoup(s.group(), "lxml") + soup = BeautifulSoup(s, "lxml") if soup.find('video'): return True return False |