From cca762575de2f87b546396ac558acfc0e099824c Mon Sep 17 00:00:00 2001 From: jumpmanjay Date: Tue, 22 Nov 2016 20:48:22 -0600 Subject: [PATCH] add excludeFields variable to directory function calls --- Contents/Code/__init__.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Contents/Code/__init__.py b/Contents/Code/__init__.py index 6b0d7ba..63f5ae1 100644 --- a/Contents/Code/__init__.py +++ b/Contents/Code/__init__.py @@ -71,7 +71,7 @@ def ShowLiveTV(title): return oc @route(PREFIX + '/showfavoritechannels') -def ShowFavoriteChannels(title): +def ShowFavoriteChannels(title,excludeFields=0): global pyhdhr oc = ObjectContainer(title2=title) @@ -96,7 +96,7 @@ def ShowFavoriteChannels(title): return oc @route(PREFIX + '/showallchannels') -def ShowAllChannels(title): +def ShowAllChannels(title,excludeFields=0): global pyhdhr oc = ObjectContainer(title2=title) @@ -120,7 +120,7 @@ def ShowAllChannels(title): return oc @route(PREFIX + '/showhdchannels') -def ShowHDChannels(title): +def ShowHDChannels(title,excludeFields=0): global pyhdhr oc = ObjectContainer(title2=title) @@ -145,7 +145,7 @@ def ShowHDChannels(title): return oc @route(PREFIX + '/showsdchannels') -def ShowSDChannels(title): +def ShowSDChannels(title,excludeFields=0): global pyhdhr oc = ObjectContainer(title2=title) @@ -170,7 +170,7 @@ def ShowSDChannels(title): return oc @route(PREFIX + '/showwhatson') -def ShowWhatsOn(title): +def ShowWhatsOn(title,excludeFields=0): global pyhdhr oc = ObjectContainer(title2=title)