Skip to content

Commit

Permalink
add excludeFields variable to directory function calls
Browse files Browse the repository at this point in the history
  • Loading branch information
jumpmanjay committed Nov 23, 2016
1 parent 7a1eafd commit cca7625
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Contents/Code/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand All @@ -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)

Expand All @@ -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)

Expand All @@ -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)

Expand All @@ -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)

Expand Down

0 comments on commit cca7625

Please sign in to comment.