8000 fix: Method name is emit_event, not emit (#2215) · DEXTERBP/botbuilder-python@ec22a89 · GitHub
[go: up one dir, main page]

Skip to content

Commit ec22a89

Browse files
authored
fix: Method name is emit_event, not emit (microsoft#2215)
1 parent e2015eb commit ec22a89

File tree

1 file changed

+1
-1
lines changed
  • libraries/botbuilder-dialogs/botbuilder/dialogs

1 file changed

+1
-1
lines changed

libraries/botbuilder-dialogs/botbuilder/dialogs/dialog.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ async def on_dialog_event(
125125

126126
# Bubble as needed
127127
if (not handled) and dialog_event.bubble and dialog_context.parent:
128-
handled = await dialog_context.parent.emit(
128+
handled = await dialog_context.parent.emit_event(
129129
dialog_event.name, dialog_event.value, True, False
130130
)
131131

0 commit comments

Comments
 (0)
0