3 import rtv_propertiesfile
5 class ProgrammeInfo( rtv_propertiesfile
.PropertiesFile
):
10 self
.description
= None
12 self
.channel_pretty
= None
17 self
.deleteTime
= None
21 def clashes_with( self
, otherPi
):
23 return ( ( otherPi
.startTime
>= self
.startTime
and
24 otherPi
.startTime
< self
.endTime
)
26 ( self
.startTime
>= otherPi
.startTime
and
27 self
.startTime
< otherPi
.endTime
) )
29 def get_priority( self
):
30 if self
.priority
== None: