diff options
| -rwxr-xr-x | cron/gate_news | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cron/gate_news b/cron/gate_news index 3a6de8cbd..c550af9c9 100755 --- a/cron/gate_news +++ b/cron/gate_news @@ -271,8 +271,8 @@ def poll_newsgroup(mlist, conn, first, last): mlist.Unlock() except nntplib.error_temp, msg: sys.stderr.write('encountered NNTP error for list %s\n' % - (mlist.internal_name())) - sys.stderr.write(msg + '\n') + mlist.internal_name()) + sys.stderr.write(str(msg) + '\n') except QuickEscape: pass # We gated this TO news, don't repost it! |
