From eb229a6fbec11679f42dac4fa5fc7b1accbc8e4e Mon Sep 17 00:00:00 2001 From: Fabio Manganiello Date: Fri, 6 Jul 2018 02:24:25 +0200 Subject: [PATCH] Added call to parent constructor in media.ctrl --- platypush/plugins/media/ctrl.py | 1 + 1 file changed, 1 insertion(+) diff --git a/platypush/plugins/media/ctrl.py b/platypush/plugins/media/ctrl.py index 03c64a7b..141e9dea 100644 --- a/platypush/plugins/media/ctrl.py +++ b/platypush/plugins/media/ctrl.py @@ -21,6 +21,7 @@ class MediaCtrlPlugin(Plugin): } def __init__(self, torrentcast_port=9090, *args, **kwargs): + super().__init__() self.torrentcast_port = torrentcast_port self.url = None self.plugin = None