From cc511c98a1c6e65e051fc4145166b7d325ceee36 Mon Sep 17 00:00:00 2001 From: Oliver Falk Date: Wed, 23 May 2018 10:35:51 +0200 Subject: [PATCH] PEP8 --- ivatar/views.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ivatar/views.py b/ivatar/views.py index 5c05542..a034073 100644 --- a/ivatar/views.py +++ b/ivatar/views.py @@ -31,4 +31,5 @@ class AvatarImageView(TemplateView): raise Exception('No photo assigned to "%s"' % email.email) return HttpResponse( - io.BytesIO(email.photo.data), content_type='image/%s' % email.photo.format) + io.BytesIO(email.photo.data), + content_type='image/%s' % email.photo.format)