diff options
| author | bwarsaw | 1998-06-19 20:14:16 +0000 |
|---|---|---|
| committer | bwarsaw | 1998-06-19 20:14:16 +0000 |
| commit | 94f82aeac7ac76d808ece10b178302e7a8a562a6 (patch) | |
| tree | 7e1b595133dbfb3ded7a0d5a617e7f3b21db71bb /Mailman/runcgi.py | |
| parent | 5113d62a2eab16dd94a23bb2adb82b14d0d863ea (diff) | |
| download | mailman-94f82aeac7ac76d808ece10b178302e7a8a562a6.tar.gz mailman-94f82aeac7ac76d808ece10b178302e7a8a562a6.tar.zst mailman-94f82aeac7ac76d808ece10b178302e7a8a562a6.zip | |
Obsolete. Fold this functionality (for now) in the CGI driver script
Diffstat (limited to 'Mailman/runcgi.py')
| -rw-r--r-- | Mailman/runcgi.py | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/Mailman/runcgi.py b/Mailman/runcgi.py deleted file mode 100644 index d35c70ae4..000000000 --- a/Mailman/runcgi.py +++ /dev/null @@ -1,23 +0,0 @@ -from Mailman.debug import * - -def wrap_func(func, debug=1, print_env=1): - if not debug: - try: - sys.stderr = mm_utils.StampedLogger("error", label = 'admin', - manual_reprime=1, nofail=0) - except: - # Error opening log, show thru anyway! - wrap_func(func, print_env=print_env, debug=1) - return - func() - return - else: - try: - func() - except SystemExit: - pass - except: - print_trace() - if print_env: - print_environ() - |
