diff options
author | Michael Kaye <1917473+michaelkaye@users.noreply.github.com> | 2019-10-24 18:43:13 +0100 |
---|---|---|
committer | Michael Kaye <1917473+michaelkaye@users.noreply.github.com> | 2019-10-24 18:43:13 +0100 |
commit | e4d98188da2bbe9211a6ee1c9479f7f30138ab46 (patch) | |
tree | 6aed317cb05f14e5e5cf47b3721bf0afa53c8f4f /synapse/rest/media/v1 | |
parent | Reduce impact of debug logging (diff) | |
download | synapse-e4d98188da2bbe9211a6ee1c9479f7f30138ab46.tar.xz |
Address codestyle concerns
Diffstat (limited to 'synapse/rest/media/v1')
-rw-r--r-- | synapse/rest/media/v1/preview_url_resource.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/synapse/rest/media/v1/preview_url_resource.py b/synapse/rest/media/v1/preview_url_resource.py index 13782d3120..094ebad770 100644 --- a/synapse/rest/media/v1/preview_url_resource.py +++ b/synapse/rest/media/v1/preview_url_resource.py @@ -118,7 +118,9 @@ class PreviewUrlResource(DirectServeResource): value = getattr(url_tuple, attrib) logger.debug( "Matching attrib '%s' with value '%s' against" " pattern '%s'", - attrib, value, pattern + attrib, + value, + pattern, ) if value is None: |