diff options
author | Andrew Morgan <1342360+anoadragon453@users.noreply.github.com> | 2019-09-03 11:42:45 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-03 11:42:45 +0100 |
commit | 2a447826665a5ac8e12736214f0ef2401e72f1f9 (patch) | |
tree | ee18930dd9db500a09ad8901ac67ebe4a38c233d /synapse/rest/media | |
parent | Opentrace device lists (#5853) (diff) | |
download | synapse-2a447826665a5ac8e12736214f0ef2401e72f1f9.tar.xz |
Remove double return statements (#5962)
Remove all the "double return" statements which were a result of us removing all the instances of ``` defer.returnValue(...) return ``` statements when we switched to python3 fully.
Diffstat (limited to 'synapse/rest/media')
-rw-r--r-- | synapse/rest/media/v1/preview_url_resource.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/synapse/rest/media/v1/preview_url_resource.py b/synapse/rest/media/v1/preview_url_resource.py index bd40891a7f..7a56cd4b6c 100644 --- a/synapse/rest/media/v1/preview_url_resource.py +++ b/synapse/rest/media/v1/preview_url_resource.py @@ -183,7 +183,6 @@ class PreviewUrlResource(DirectServeResource): if isinstance(og, six.text_type): og = og.encode("utf8") return og - return media_info = yield self._download_url(url, user) |