projects
/
rss2email.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0f1f2e7
)
rss2email: fix index->send argument typo in feed.run() call.
author
W. Trevor King
<wking@tremily.us>
Thu, 18 Oct 2012 16:22:28 +0000
(12:22 -0400)
committer
W. Trevor King
<wking@tremily.us>
Thu, 18 Oct 2012 16:22:28 +0000
(12:22 -0400)
rss2email.py
patch
|
blob
|
history
diff --git
a/rss2email.py
b/rss2email.py
index 20f2dc1a0d031acc1e9c1ab18a4144af4d89330f..2ddabfc4760d362ae681c56b411327a219be5e69 100755
(executable)
--- a/
rss2email.py
+++ b/
rss2email.py
@@
-1444,7
+1444,7
@@
def cmd_run(feeds, args):
feed = feeds.index(index)
if feed.active:
try:
- feed.run(
index
)
+ feed.run(
send=args.send
)
except NoToEmailAddress as e:
e.log()
except ProcessingError as e: