8000 Changed greeting to include instructions to type anything to see stat… · sherlock666/botbuilder-python@63ebf22 · GitHub
[go: up one dir, main page]

Skip to content

Commit 63ebf22

Browse files
authored
Changed greeting to include instructions to type anything to see state. (microsoft#307)
1 parent 31dd7ac commit 63ebf22

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

samples/45.state-management/bots/state_management_bot.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,9 @@ async def on_message_activity(self, turn_context: TurnContext):
5959
user_profile.name = turn_context.activity.text
6060

6161
# Acknowledge that we got their name.
62-
await turn_context.send_activity(f"Thanks { user_profile.name }.")
62+
await turn_context.send_activity(
63+
f"Thanks { user_profile.name }. To see conversation data, type anything."
64+
)
6365

6466
# Reset the flag to allow the bot to go though the cycle again.
6567
conversation_data.prompted_for_user_name = False

0 commit comments

Comments
 (0)
0