summary refs log tree commit diff
path: root/synapse/rest/client/v2_alpha/account.py
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2019-09-06 13:54:25 +0100
committerGitHub <noreply@github.com>2019-09-06 13:54:25 +0100
commit5624d0f2ec09ce706998221b8adad2d18521bcda (patch)
tree5e76eca1679337f39592f7288d1c31a9fc4ddd57 /synapse/rest/client/v2_alpha/account.py
parentMerge pull request #5991 from matrix-org/erikj/fix_tracing_funcs (diff)
parentApply suggestions from code review (diff)
downloadsynapse-5624d0f2ec09ce706998221b8adad2d18521bcda.tar.xz
Merge pull request #5994 from matrix-org/anoa/html_template_fix
Fix destructuring assumption bug with using load_jinja2_templates
Diffstat (limited to 'synapse/rest/client/v2_alpha/account.py')
-rw-r--r--synapse/rest/client/v2_alpha/account.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/rest/client/v2_alpha/account.py b/synapse/rest/client/v2_alpha/account.py
index 997557dfb0..785d01ea52 100644
--- a/synapse/rest/client/v2_alpha/account.py
+++ b/synapse/rest/client/v2_alpha/account.py
@@ -261,7 +261,7 @@ class PasswordResetSubmitTokenServlet(RestServlet):
             request.setResponseCode(e.code)
 
             # Show a failure page with a reason
-            html_template = load_jinja2_templates(
+            html_template, = load_jinja2_templates(
                 self.config.email_template_dir,
                 [self.config.email_password_reset_template_failure_html],
             )