diff options
| author | bwarsaw | 2002-09-18 05:40:42 +0000 |
|---|---|---|
| committer | bwarsaw | 2002-09-18 05:40:42 +0000 |
| commit | b5ade3c020fba7ff9da848549eb570d76de4acf5 (patch) | |
| tree | e209bc71161860bdf27d374a13ee12623fff9474 /misc | |
| parent | ab9ba119a87632e39b2a4c13a893b05f42a5cad0 (diff) | |
| download | mailman-b5ade3c020fba7ff9da848549eb570d76de4acf5.tar.gz mailman-b5ade3c020fba7ff9da848549eb570d76de4acf5.tar.zst mailman-b5ade3c020fba7ff9da848549eb570d76de4acf5.zip | |
Diffstat (limited to 'misc')
| -rw-r--r-- | misc/paths.py.in | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/misc/paths.py.in b/misc/paths.py.in index b42d0d361..90bfde7e1 100644 --- a/misc/paths.py.in +++ b/misc/paths.py.in @@ -47,3 +47,10 @@ sys.path.insert(0, os.path.join(prefix, 'pythonlib')) sitedir = os.path.join(sys.prefix, 'lib', 'python'+sys.version[:3], 'site-packages') sys.path.append(sitedir) + + +# In a normal interactive Python environment, the japanese.pth and korean.pth +# files would be imported automatically. But because we inhibit the importing +# of the site module, we need to be explicit about importing these codecs. +import japanese +import korean |
