diff options
| author | viega | 1998-06-02 13:33:19 +0000 |
|---|---|---|
| committer | viega | 1998-06-02 13:33:19 +0000 |
| commit | 4e00b9279fada70126ee6d23bdced2991ee947a8 (patch) | |
| tree | f9a855f57c221df6ca3a273ac450cccc7787fc85 | |
| parent | ed4591ce0fd2e36811f6d223f6e4c9fde1917dec (diff) | |
| download | mailman-4e00b9279fada70126ee6d23bdced2991ee947a8.tar.gz mailman-4e00b9279fada70126ee6d23bdced2991ee947a8.tar.zst mailman-4e00b9279fada70126ee6d23bdced2991ee947a8.zip | |
Whoops, use SCRIPT_DIR from mm_cfg.
| -rwxr-xr-x | cgi/subscribe | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cgi/subscribe b/cgi/subscribe index 3323d2853..df7076e3f 100755 --- a/cgi/subscribe +++ b/cgi/subscribe @@ -65,7 +65,7 @@ results = '' def call_script(which, pathinfo): "A little bit of a hack to call one of the scripts..." os.environ['PATH_INFO'] = string.join(pathinfo, '/') - file = os.path.join(paths.prefix, 'scripts/%s' % which) + file = os.path.join(mm_cfg.SCRIPTS_DIR, which) list.Unlock() execfile(file) sys.exit(0) |
