diff options
author | cedricbonhomme <devnull@localhost> | 2012-09-10 12:14:54 +0200 |
---|---|---|
committer | cedricbonhomme <devnull@localhost> | 2012-09-10 12:14:54 +0200 |
commit | f9f01679906f5c3207782684efabae422c0029da (patch) | |
tree | 399381b686638c2f0a4dd11d5462f5eec8808df8 /source | |
parent | Clearer date at the index page. (diff) | |
download | newspipe-f9f01679906f5c3207782684efabae422c0029da.tar.gz newspipe-f9f01679906f5c3207782684efabae422c0029da.tar.bz2 newspipe-f9f01679906f5c3207782684efabae422c0029da.zip |
Shorter title.
Diffstat (limited to 'source')
-rwxr-xr-x | source/pyAggr3g470r.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/source/pyAggr3g470r.py b/source/pyAggr3g470r.py index 50786522..5f54934b 100755 --- a/source/pyAggr3g470r.py +++ b/source/pyAggr3g470r.py @@ -179,8 +179,8 @@ class Root: description = "No description." # Title of the article article_title = article["article_title"] - if len(article_title) >= 110: - article_title = article_title[:110] + " ..." + if len(article_title) >= 80: + article_title = article_title[:80] + " ..." # a description line per article (date, title of the article and # CSS description tooltips on mouse over) @@ -615,8 +615,8 @@ class Root: description = "No description." # Title of the article article_title = article["article_title"] - if len(article_title) >= 110: - article_title = article_title[:110] + " ..." + if len(article_title) >= 80: + article_title = article_title[:80] + " ..." # a description line per article (date, title of the article and # CSS description tooltips on mouse over) @@ -877,8 +877,8 @@ class Root: description = "No description." # Title of the article article_title = article["article_title"] - if len(article_title) >= 110: - article_title = article_title[:110] + " ..." + if len(article_title) >= 80: + article_title = article_title[:80] + " ..." if new_feed_section is True: new_feed_section = False |