diff options
author | luxagraf <sng@luxagraf.net> | 2016-11-19 19:44:13 -0500 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2016-11-19 19:44:13 -0500 |
commit | 478cc39f2c7bd007ac7c4ce1a5de95da46ccdaae (patch) | |
tree | e68f0d99122d35d6d021f788fccbf06630848b9c /app/utils | |
parent | 60f800a5922af0b4bcc8dcee1fde829059910fd3 (diff) |
bux fix
Diffstat (limited to 'app/utils')
-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 |