summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xnews/controller.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/news/controller.py b/news/controller.py
index 5277d626..7d41fd6f 100755
--- a/news/controller.py
+++ b/news/controller.py
@@ -81,7 +81,7 @@ class commands():
def save(args):
output_buffer = ''
for bot in bots:
- if bot.loop:
+ if bots[bot].loop:
output_buffer += bot + '|' + bots[bot].url + '|' + ' '.join(bots[bot].channels) + '\n'
F = open(feedfile, "w")