Fix misspellings in meetbot
Fix misspellings detected by: * pip install misspellings * git ls-files | grep -v locale | misspellings -f - Change-Id: I47e29fd1186aef9dda3c0f5e772f62729304af57 Closes-Bug: #1257295
This commit is contained in:
parent
5f8bdbeef1
commit
da7747b61f
@ -353,19 +353,19 @@ class MeetingCommands(object):
|
||||
self.endtime = time_
|
||||
self.config.save()
|
||||
def do_agreed(self, nick, **kwargs):
|
||||
"""Add aggreement to the minutes - chairs only."""
|
||||
"""Add agreement to the minutes - chairs only."""
|
||||
if not self.isChair(nick): return
|
||||
m = items.Agreed(nick, **kwargs)
|
||||
self.additem(m)
|
||||
do_agree = do_agreed
|
||||
def do_accepted(self, nick, **kwargs):
|
||||
"""Add aggreement to the minutes - chairs only."""
|
||||
"""Add agreement to the minutes - chairs only."""
|
||||
if not self.isChair(nick): return
|
||||
m = items.Accepted(nick, **kwargs)
|
||||
self.additem(m)
|
||||
do_accept = do_accepted
|
||||
def do_rejected(self, nick, **kwargs):
|
||||
"""Add aggreement to the minutes - chairs only."""
|
||||
"""Add agreement to the minutes - chairs only."""
|
||||
if not self.isChair(nick): return
|
||||
m = items.Rejected(nick, **kwargs)
|
||||
self.additem(m)
|
||||
|
Loading…
x
Reference in New Issue
Block a user