Skip to content

Commit 939a811

Browse files
authored
Merge pull request #84 from andresdelfino/fix_wizzard_typo
Fix wizzard typo
2 parents 47c7ccb + 6cf3848 commit 939a811

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/pycamp_bot/commands/schedule.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ async def create_slot(update, context):
109109
new_slot.start = starting_hour
110110

111111
pycampista = Pycampista.get_or_create(username=username, chat_id=chat_id)[0]
112-
new_slot.current_wizzard = pycampista
112+
new_slot.current_wizard = pycampista
113113

114114
new_slot.save()
115115
times.pop(0)

src/pycamp_bot/commands/wizard.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ async def notify_schedule_to_wizards(update, context, pycamp):
198198
await notify_scheduled_slots_to_wizard(update, context, pycamp, wizard, wizard_agenda)
199199
logger.debug("Notified wizard schedule to {}".format(wizard.username))
200200
except BadRequest:
201-
logger.warn("Coulnd't notify its wizzard schedule to {}".format(wizard.username))
201+
logger.warn("Coulnd't notify its wizard schedule to {}".format(wizard.username))
202202

203203

204204
def persist_wizards_schedule_in_db(pycamp):

0 commit comments

Comments
 (0)