diff options
author | Erik Johnston <erik@matrix.org> | 2023-12-12 20:32:48 +0000 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2023-12-12 20:32:48 +0000 |
commit | 70c020b532821f898aaa07c35c5d5ab59055ae1c (patch) | |
tree | 099e201cd32c794d9f45216ade8e8e2ead0c88f5 /synapse | |
parent | Update the README pointing to the Element fork. (diff) | |
download | synapse-70c020b532821f898aaa07c35c5d5ab59055ae1c.tar.xz |
Update text github/clokep/morg-readme clokep/morg-readme
Diffstat (limited to 'synapse')
-rw-r--r-- | synapse/__init__.py | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/synapse/__init__.py b/synapse/__init__.py index 25928a60d2..e21ba6e186 100644 --- a/synapse/__init__.py +++ b/synapse/__init__.py @@ -30,9 +30,15 @@ from synapse.util.stringutils import strtobool ImageFile.LOAD_TRUNCATED_IMAGES = True # Update your remotes folks. -print("Synapse is no longer being developed under the matrix-org organization.") -print("Please update your git remote to pull from vector-im/synapse:") -print(" git remote set-url origin git@github.com:vector-im/synapse.git") +announcement = """ +Synapse is no longer being developed under the matrix-org organization. See the +README.rst for more details. + +Please update your git remote to pull from element-hq/synapse: + + git remote set-url origin git@github.com:element-hq/synapse.git +""" +print(announcement) sys.exit(1) # Check that we're not running on an unsupported Python version. |