diff options
author | Andrew Morgan <andrew@amorgan.xyz> | 2019-06-05 14:33:13 +0100 |
---|---|---|
committer | Andrew Morgan <andrew@amorgan.xyz> | 2019-06-05 14:33:13 +0100 |
commit | fe0af298ff9f1ff8a7b88e1b93b49d91627cfd29 (patch) | |
tree | 896d4c7469bfd4f30aff56599e43c394f5dcbbe5 | |
parent | silly linting rules (diff) | |
download | synapse-fe0af298ff9f1ff8a7b88e1b93b49d91627cfd29.tar.xz |
Correct html5lib dep version number
-rw-r--r-- | res/templates/password_reset.html | 1 | ||||
-rw-r--r-- | synapse/python_dependencies.py | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/res/templates/password_reset.html b/res/templates/password_reset.html index 68673df8ae..c58f61470c 100644 --- a/res/templates/password_reset.html +++ b/res/templates/password_reset.html @@ -1,5 +1,4 @@ <html> -<title>time to reset your password!!!</title> <body> <p>here's the link you forgetful person you!</p> diff --git a/synapse/python_dependencies.py b/synapse/python_dependencies.py index 8df7893714..2d611c2239 100644 --- a/synapse/python_dependencies.py +++ b/synapse/python_dependencies.py @@ -76,7 +76,7 @@ REQUIREMENTS = [ "netaddr>=0.7.18", "Jinja2>=2.9", "bleach>=1.4.2", - "html5lib>=1.0.0", + "html5lib>=1.0", ] CONDITIONAL_REQUIREMENTS = { |