From: W. Trevor King Date: Fri, 20 Sep 2013 07:41:00 +0000 (-0700) Subject: r2e.1: Remove quotes around 'name-format' value X-Git-Tag: v3.7~5 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=8f0ab5e1999f988c67610c1bd0a1eada27759172;p=rss2email.git r2e.1: Remove quotes around 'name-format' value ConfigParser doesn't need quoting around string values, so if you use quotes they will show up explicitly: From: "'indexed: Jessica Hagy'" That's probably not what you want ;). Signed-off-by: W. Trevor King --- diff --git a/r2e.1 b/r2e.1 index 7157486..4079399 100644 --- a/r2e.1 +++ b/r2e.1 @@ -124,14 +124,14 @@ setting to the feed-specific section. Here is an example overriding from = user@rss2email.invalid force-from = False use-publisher-email = False -name-format = '{feed-title}: {author}' +name-format = {feed-title}: {author} .\|.\|. verbose = warning [feed.feedname] url = http://feed.url/somewhere.rss use-publisher-email = True -name-format = '{author} ({feed.title})' +name-format = {author} ({feed.title}) .RE .P .SH FILES