aboutsummaryrefslogtreecommitdiff
path: root/articles.py
diff options
context:
space:
mode:
authorcedricbonhomme <devnull@localhost>2010-12-06 08:20:52 +0100
committercedricbonhomme <devnull@localhost>2010-12-06 08:20:52 +0100
commit709cb184523fea649580b0d6219c0fc393a11e77 (patch)
tree49ee512c335f5fc6e1dc97cda7873e3ae1f26ba0 /articles.py
parentMinor improvements. Truncate title of articles on the main page when article'... (diff)
downloadnewspipe-709cb184523fea649580b0d6219c0fc393a11e77.tar.gz
newspipe-709cb184523fea649580b0d6219c0fc393a11e77.tar.bz2
newspipe-709cb184523fea649580b0d6219c0fc393a11e77.zip
Minor improvements. Removed useless .encode('utf-8').
Diffstat (limited to 'articles.py')
-rw-r--r--articles.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/articles.py b/articles.py
index 7c019ae7..6a37bea8 100644
--- a/articles.py
+++ b/articles.py
@@ -29,7 +29,7 @@ from collections import OrderedDict
class Feed(object):
"""
- Represent a stream (RSS, ATOM).
+ Represent a stream (RSS, ATOM, etc.).
"""
def __init__(self):
"""
bgstack15