Skip to content

Commit

Permalink
Fix mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
tulir committed May 7, 2023
1 parent 5822fb0 commit e98a990
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mautrix_signal/commands/signal.py
Original file line number Diff line number Diff line change
Expand Up @@ -518,7 +518,7 @@ async def confirm_bridge(evt: CommandEvent) -> EventID | None:
help_args="<captcha token>",
)
async def submit_challenge(evt: CommandEvent) -> None:
if len(evt.args == 0):
if len(evt.args) == 0:
await evt.reply("**Usage:** `$cmdprefix+sp submit-challenge <captcha token>`")
return
challenge_token = evt.sender.challenge_token
Expand Down

0 comments on commit e98a990

Please sign in to comment.