From 8f0ab5e1999f988c67610c1bd0a1eada27759172 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Fri, 20 Sep 2013 00:41:00 -0700 Subject: [PATCH] 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 --- r2e.1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 2.26.2