r2e.1: Remove quotes around 'name-format' value
authorW. Trevor King <wking@tremily.us>
Fri, 20 Sep 2013 07:41:00 +0000 (00:41 -0700)
committerW. Trevor King <wking@tremily.us>
Fri, 20 Sep 2013 07:41:00 +0000 (00:41 -0700)
ConfigParser doesn't need quoting around string values, so if you use
quotes they will show up explicitly:

  From: "'indexed: Jessica Hagy'" <user@rss2email.invalid>

That's probably not what you want ;).

Signed-off-by: W. Trevor King <wking@tremily.us>
r2e.1

diff --git a/r2e.1 b/r2e.1
index 715748608e6841f21ad4346430aaff8e4ec1f2dd..4079399be0214f023210c235735ef5a6078590b5 100644 (file)
--- 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