Skip to content

Commit 83386da

Browse files
committed
Fix variable name
1 parent 5e54c0a commit 83386da

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pycamp_bot/commands/projects.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -453,7 +453,7 @@ async def show_projects(update, context):
453453
"""Show available projects"""
454454
projects = Project.select()
455455
if not projects:
456-
text = "Todavía no hay ningún proyecto cargado"
456+
msg_text = "Todavía no hay ningún proyecto cargado"
457457
await update.message.reply_text(msg_text, link_preview_options=LinkPreviewOptions(is_disabled=True))
458458

459459
msg_text = ""

0 commit comments

Comments
 (0)