Skip to content

Commit 439bb12

Browse files
committed
basta de lower
1 parent 1f49e8c commit 439bb12

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
@@ -499,7 +499,7 @@ async def show_participants(update, context):
499499
)
500500
return
501501
project_name = update.message.text.split()
502-
project_name = (' '.join(project_name[1:])).lower()
502+
project_name = (' '.join(project_name[1:]))
503503
project = Project.select().where(Project.name == project_name)
504504
if not project:
505505
await context.bot.send_message(

0 commit comments

Comments
 (0)