From 76b81a31ec03e4a5b6cec10e157f96e75f726af5 Mon Sep 17 00:00:00 2001 From: pictuga Date: Wed, 2 Oct 2013 12:06:14 +0200 Subject: [PATCH] Drop desc by default Arguably the reason is that users tend to believe the program does nothing, cause Firefox (and others?) only shows the description in the feed preview. The "keep" parameter keeps the description in place. --- morss.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/morss.py b/morss.py index f85b7b8..075fce7 100644 --- a/morss.py +++ b/morss.py @@ -461,7 +461,7 @@ def Gather(url, cachePath, options): if 'clip' in options: item.content = item.desc + "

* * *


" + item.content del item.desc - if 'alone' in options: + if 'keep' not in options: del item.desc log(len(rss.items))