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 1f49e8c commit 439bb12Copy full SHA for 439bb12
src/pycamp_bot/commands/projects.py
@@ -499,7 +499,7 @@ async def show_participants(update, context):
499
)
500
return
501
project_name = update.message.text.split()
502
- project_name = (' '.join(project_name[1:])).lower()
+ project_name = (' '.join(project_name[1:]))
503
project = Project.select().where(Project.name == project_name)
504
if not project:
505
await context.bot.send_message(
0 commit comments