Skip to content

Commit

Permalink
[EPG init] remove some redundant code.
Browse files Browse the repository at this point in the history
  • Loading branch information
Andy Blackburn committed Mar 22, 2013
1 parent 1f50c91 commit 471cce4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions partnerbox/src/PartnerboxEPGSelection.py
Expand Up @@ -68,8 +68,8 @@ def Partnerbox_EPGSelectionInit():
EPGSelection.GetPartnerboxTimerlist = GetPartnerboxTimerlist
EPGSelection.PartnerboxInit = PartnerboxInit

def Partnerbox_EPGSelection__init__(self, session, service, zapFunc=None, eventid=None, bouquetChangeCB=None, serviceChangeCB=None, EPGtype = None, bouquetname=""):
baseEPGSelection__init__(self, session, service, zapFunc, eventid, bouquetChangeCB, serviceChangeCB, EPGtype, bouquetname)
def Partnerbox_EPGSelection__init__(self, session, service, zapFunc=None, eventid=None, bouquetChangeCB=None, serviceChangeCB=None, EPGtype = None):
baseEPGSelection__init__(self, session, service, zapFunc, eventid, bouquetChangeCB, serviceChangeCB, EPGtype)
self.PartnerboxInit(True)

def PartnerboxInit(self, filterRef):
Expand Down
4 changes: 2 additions & 2 deletions yttrailer/src/plugin.py
Expand Up @@ -103,8 +103,8 @@ def EventViewBase__init__(self, Event, Ref, callback=None, similarEPGCB=None):
})


def EPGSelection__init__(self, session, service, zapFunc=None, eventid=None, bouquetChangeCB=None, serviceChangeCB=None, EPGtype = None, bouquetname=""):
baseEPGSelection__init__(self, session, service, zapFunc, eventid, bouquetChangeCB, serviceChangeCB, EPGtype, bouquetname)
def EPGSelection__init__(self, session, service, zapFunc=None, eventid=None, bouquetChangeCB=None, serviceChangeCB=None, EPGtype=None):
baseEPGSelection__init__(self, session, service, zapFunc, eventid, bouquetChangeCB, serviceChangeCB, EPGtype)
self["trailerActions"] = ActionMap(["InfobarActions", "InfobarTeletextActions"],
{
"showTv": self.showTrailer,
Expand Down

0 comments on commit 471cce4

Please sign in to comment.