diff options
author | Richard van der Hoff <github@rvanderhoff.org.uk> | 2017-08-23 14:14:56 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-23 14:14:56 +0100 |
commit | a7effa84008ab763aa8fdd4eb5773180b0987daf (patch) | |
tree | 4d2a489a0eacd7aef9277da365214630e4d255ac /synapse | |
parent | Fix user_dir startup (diff) | |
parent | python_dependencies: Use bcrypt module instead of py-bcrypt (diff) | |
download | synapse-a7effa84008ab763aa8fdd4eb5773180b0987daf.tar.xz |
Merge pull request #2288 from kyrias/bcrypt
python_dependencies: Use bcrypt module instead of py-bcrypt
Diffstat (limited to 'synapse')
-rw-r--r-- | synapse/python_dependencies.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/python_dependencies.py b/synapse/python_dependencies.py index 1d902dc38d..630e92c90e 100644 --- a/synapse/python_dependencies.py +++ b/synapse/python_dependencies.py @@ -31,7 +31,7 @@ REQUIREMENTS = { "pyyaml": ["yaml"], "pyasn1": ["pyasn1"], "daemonize": ["daemonize"], - "py-bcrypt": ["bcrypt"], + "bcrypt": ["bcrypt"], "pillow": ["PIL"], "pydenticon": ["pydenticon"], "ujson": ["ujson"], |