Fix wrong func name.
This commit is contained in:
parent
3213eebd75
commit
30895b5693
1 changed files with 2 additions and 2 deletions
4
dosage
4
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
|
||||
|
|
Loading…
Reference in a new issue