diff options
Diffstat (limited to 'news/controller.py')
-rwxr-xr-x | news/controller.py | 2 |
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") |