# gutemine formatumschaltung patch 3 begins here
pauli_720p_file = "/etc/enigma2/720p.channels"
pauli_1080i_file = "/etc/enigma2/1080i.channels"

if os.path.exists(pauli_720p_file) == True:
   f = open(pauli_720p_file, "r")
   hd_channels_720p = f.read()
   f.close
   print "[PAULI] 720p HD Channels:"
   print hd_channels_720p
else:
   hd_channels_720p  = " "
   print "[PAULI] no 720p Channels"
                                      
if os.path.exists(pauli_1080i_file) == True:
   f = open(pauli_1080i_file, "r")
   hd_channels_1080i = f.read()
   f.close
   print "[PAULI] 1080i HD Channels:"
   print hd_channels_1080i
else:
   hd_channels_1080i  = " "
   print "[PAULI] no 1080i HD Channels"
# gutemine formatumschaltung patch 3 ends here
