summaryrefslogtreecommitdiff
path: root/src/mailman/Utils.py
diff options
context:
space:
mode:
authorBarry Warsaw2011-03-15 17:54:57 -0400
committerBarry Warsaw2011-03-15 17:54:57 -0400
commitfd7c113707d9df9174957d2922d2d4484826145b (patch)
tree42158a09e112318024b4b7b312ca8a993c852d33 /src/mailman/Utils.py
parent2c562fd0191b0af04511dad2b0d0ae57b31198e7 (diff)
downloadmailman-fd7c113707d9df9174957d2922d2d4484826145b.tar.gz
mailman-fd7c113707d9df9174957d2922d2d4484826145b.tar.zst
mailman-fd7c113707d9df9174957d2922d2d4484826145b.zip
Diffstat (limited to 'src/mailman/Utils.py')
-rw-r--r--src/mailman/Utils.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mailman/Utils.py b/src/mailman/Utils.py
index a58ed1d24..a26025fa3 100644
--- a/src/mailman/Utils.py
+++ b/src/mailman/Utils.py
@@ -210,9 +210,9 @@ def findtext(templatefile, raw_dict=None, raw=False, lang=None, mlist=None):
searchdirs = []
if mlist is not None:
searchdirs.append(mlist.data_path)
- searchdirs.append(os.path.join(TEMPLATE_DIR, mlist.host_name))
- searchdirs.append(os.path.join(TEMPLATE_DIR, 'site'))
- searchdirs.append(TEMPLATE_DIR)
+ searchdirs.append(os.path.join(config.TEMPLATE_DIR, mlist.host_name))
+ searchdirs.append(os.path.join(config.TEMPLATE_DIR, 'site'))
+ searchdirs.append(config.TEMPLATE_DIR)
# Start scanning
fp = None
try: