tools/screenshots: Create integration bots using display_name.

Will be adding the updated screenshots of affected integrations as soon
as the PR with the new logos and example screenshots gets merged.
This commit is contained in:
Niloth P 2024-11-20 11:58:40 +05:30
parent 3fe77b67ee
commit 01b80125f4
1 changed files with 1 additions and 1 deletions

View File

@ -61,7 +61,7 @@ def create_integration_bot(integration: Integration, bot_name: str | None = None
owner = get_user_by_delivery_email("iago@zulip.com", realm)
bot_email = f"{integration.name}-bot@example.com"
if bot_name is None:
bot_name = f"{integration.name.capitalize()} Bot"
bot_name = f"{integration.display_name} Bot"
try:
bot = UserProfile.objects.get(email=bot_email)
except UserProfile.DoesNotExist: