From 70abaa7143d9e3a6f72d97c71ea508a3fde499e0 Mon Sep 17 00:00:00 2001 From: Juda Kaleta Date: Fri, 4 Oct 2013 09:45:01 +0200 Subject: [PATCH] Fix line width --- embed_video/backends.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/embed_video/backends.py b/embed_video/backends.py index 607c60f..53e3cbd 100644 --- a/embed_video/backends.py +++ b/embed_video/backends.py @@ -268,4 +268,5 @@ class SoundCloudBackend(VideoBackend): return match.group('code') def get_embed_code(self, width, height): - return super(SoundCloudBackend, self).get_embed_code(width=width, height=self.height) + return super(SoundCloudBackend, self). \ + get_embed_code(width=width, height=self.height)