We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b0b505f commit 366ebd6Copy full SHA for 366ebd6
src/pycamp_bot/commands/projects.py
@@ -57,6 +57,13 @@ async def naming_project(update, context):
57
username = update.message.from_user.username
58
name = update.message.text
59
60
+ if name == '/cargar_proyecto':
61
+ await context.bot.send_message(
62
+ chat_id=update.message.chat_id,
63
+ text="Hubo un problema de conectividad, volvé a ingresar el nombre"
64
+ )
65
+ return NOMBRE
66
+
67
new_project = Project(name=name)
68
current_projects[username] = new_project
69
0 commit comments