From 67269f2f934e242f7344debd24f6bf9e9f8d0d5c Mon Sep 17 00:00:00 2001 From: AlBundy33 Date: Thu, 21 Mar 2019 23:58:02 +0100 Subject: [PATCH] fix for StreamChannel() got an unexpected keyword argument 'location'x --- Contents/Code/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Contents/Code/__init__.py b/Contents/Code/__init__.py index f8d877e..0ee39e3 100644 --- a/Contents/Code/__init__.py +++ b/Contents/Code/__init__.py @@ -177,7 +177,7 @@ def Channel(channelId, container=False): @route(PREFIX + '/{channelId}/livestream') -def StreamChannel(channelId): +def StreamChannel(channelId, **dummy): url = '%s/stream/channel/%s?profile=pass' % (Dict['url'], channelId) return Redirect(url)