aboutsummaryrefslogtreecommitdiff
path: root/feedgetter.py
diff options
context:
space:
mode:
Diffstat (limited to 'feedgetter.py')
-rwxr-xr-xfeedgetter.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/feedgetter.py b/feedgetter.py
index 9e65e385..30fbc545 100755
--- a/feedgetter.py
+++ b/feedgetter.py
@@ -109,7 +109,7 @@ class FeedGetter(object):
try:
feed_image = a_feed.feed.image.href
except:
- feed_image = "/css/img/feed-icon-28x28.png"
+ feed_image = "/img/feed-icon-28x28.png"
try:
self.c.execute('insert into feeds values (?,?,?,?,?)', (\
utils.clear_string(a_feed.feed.title.encode('utf-8')), \
bgstack15