Code

Roundupdb now appends "mailing list" information to its messages which
[roundup.git] / roundup / templates / __init__.py
1 import os
3 def listTemplates():
4     t_dir = os.path.split(__file__)[0]
5     l = []
6     for entry in os.listdir(t_dir):
7         # this isn't strictly necessary - the CVS dir won't be distributed
8         if entry == 'CVS': continue
9         if os.path.isdir(os.path.join(t_dir, entry)):
10             l.append(entry)
11     return l