From 30895b569351812a2f968d09ef7849e7b12815d5 Mon Sep 17 00:00:00 2001 From: Bastian Kleineidam Date: Tue, 9 Apr 2013 22:11:45 +0200 Subject: [PATCH] Fix wrong func name. --- dosage | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dosage b/dosage index 7d3069328..29ec41c8f 100755 --- a/dosage +++ b/dosage @@ -208,9 +208,9 @@ def vote(scraperobj): elif answer == 'no': out.info('Vote not submitted - your vote has already been submitted before.') elif answer == 'noname': - out.warning('The comic %s cannot be voted anymore.' % name) + out.warn('The comic %s cannot be voted anymore.' % name) else: - out.warning('Error submitting vote parameters: %r' % answer) + out.warn('Error submitting vote parameters: %r' % answer) except Exception as msg: out.exception(msg) errors += 1