diff options
author | luxagraf <sng@luxagraf.net> | 2015-07-21 14:26:19 +0000 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2015-07-21 14:26:19 +0000 |
commit | d964debb5a3e0814c1b3249bcc4616742e85bae5 (patch) | |
tree | 3f1971e6cb97484deba6525313b749a9c862ace8 /app/blog | |
parent | b00a2d9657c5ef40421f7320073aa71da3ff3d59 (diff) |
fixed a couple typos and bugs
Diffstat (limited to 'app/blog')
-rw-r--r-- | app/blog/models.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/app/blog/models.py b/app/blog/models.py index 8e85bfe..03fb306 100644 --- a/app/blog/models.py +++ b/app/blog/models.py @@ -27,7 +27,6 @@ def extract_images(s): soup = BeautifulSoup(s) imgs = [] for img in soup.find_all('img'): - print(img['src']) imgs.append(img['src']) return imgs |