Matrix bridge: Fix username typo.

The sample username didn't quite match the format of actual Matrix usernames.
This commit is contained in:
rht 2021-10-14 15:26:47 -04:00 committed by GitHub
parent a06dd4cadf
commit e876a0541e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -237,7 +237,7 @@ def write_sample_config(target_path: str, zuliprc: Optional[str]) -> None:
OrderedDict( OrderedDict(
( (
("host", "https://matrix.org"), ("host", "https://matrix.org"),
("username", "@username@matrix.org"), ("username", "@username:matrix.org"),
("password", "password"), ("password", "password"),
("room_id", "#zulip:matrix.org"), ("room_id", "#zulip:matrix.org"),
) )