From 803967988315c73467a5c3942327eba9b8b9e25b Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Mon, 12 Jan 2004 18:56:10 +0000 Subject: [PATCH] Added a dot. --- plugins/News.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/News.py b/plugins/News.py index de8723c20..e25e59f45 100644 --- a/plugins/News.py +++ b/plugins/News.py @@ -169,7 +169,7 @@ class News(plugins.ChannelDBHandler, callbacks.Privmsg): WHERE news.expires_at > %s OR news.expires_at=0""", int(time.time())) if cursor.rowcount == 0: - irc.reply('No news for %s' % channel) + irc.reply('No news for %s.' % channel) else: items = ['(#%s) %s' % (id, s) for (id, s) in cursor.fetchall()] s = 'News for %s: %s' % (channel, '; '.join(items))