Skip to content

Commit 65cd0be

Browse files
committed
Print a nicer string than None
1 parent 7e63b82 commit 65cd0be

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
@@ -373,7 +373,7 @@ async def show_projects(update, context):
373373
project.owner.username,
374374
project.topic,
375375
project.difficult_level,
376-
project.repository_url,
376+
project.repository_url or '(ninguno)',
377377
)
378378
participants_count = Vote.select().where(
379379
(Vote.project == project) & (Vote.interest)).count()

0 commit comments

Comments
 (0)