=== modified file 'smart/channel.py' --- smart/channel.py 2008-11-20 15:58:56 +0000 +++ smart/channel.py 2009-02-16 07:23:41 +0000 @@ -299,10 +299,12 @@ from smart import channels filenames = os.listdir(os.path.dirname(channels.__file__)) infos = {} + display_channels = sysconf.get("display-channels", True) for filename in filenames: if filename.endswith("_info.py"): type = filename[:-8].replace("_", "-") - infos[type] = getChannelInfo(type) + if display_channels == True or type in str(display_channels): + infos[type] = getChannelInfo(type) return infos def detectLocalChannels(path):