[Mailman-Developers] CVS glitch.

Barry A. Warsaw barry@python.org
Thu Oct 31 06:50:29 2002


>>>>> "CVR" == Chuq Von Rospach <chuqui@plaidworks.com> writes:

    CVR> Hmm. Barry, in current CVS, mailmanctl and qrunner both call
    CVR> LogStdErr with a parameter of tee_to_stdout. but in the
    CVR> library they include, that parameter is
    CVR> tee_to_real_stderr. Something's a bit out of sync in CVS

    CVR> so does cron/gate-news

    CVR> everything else seems okay, just those three files.

But I think it's your cvs tree!

-------------------- snip snip --------------------
% find -type f | xargs grep tee_to
./Mailman/Logging/Utils.py:def LogStdErr(category, label, manual_reprime=1, tee_to_real_stderr=1):
./Mailman/Logging/Utils.py:    If tee_to_real_stderr is true, then the real standard error also gets
./Mailman/Logging/Utils.py:        if tee_to_real_stderr:
-------------------- snip snip --------------------
% find -type f | xargs grep LogStdErr
./Mailman/Logging/Utils.py:def LogStdErr(category, label, manual_reprime=1, tee_to_real_stderr=1):
./bin/mailmanctl:from Mailman.Logging.Utils import LogStdErr
./bin/mailmanctl:LogStdErr('error', 'mailmanctl', manual_reprime=0)
./bin/qrunner:from Mailman.Logging.Utils import LogStdErr
./bin/qrunner:LogStdErr('error', 'qrunner', manual_reprime=0)
./contrib/auto:from Mailman.Logging.Utils import LogStdErr
./contrib/auto:LogStdErr('auto', 'auto')
./cron/gate_news:from Mailman.Logging.Utils import LogStdErr
./cron/gate_news:LogStdErr('error', 'gate_news', manual_reprime=0)
./scripts/bounces:from Mailman.Logging.Utils import LogStdErr
./scripts/bounces:LogStdErr('error', 'bounces')
./scripts/confirm:from Mailman.Logging.Utils import LogStdErr
./scripts/confirm:LogStdErr('error', 'confirm')
./scripts/join:from Mailman.Logging.Utils import LogStdErr
./scripts/join:LogStdErr('error', 'join')
./scripts/leave:from Mailman.Logging.Utils import LogStdErr
./scripts/leave:LogStdErr('error', 'leave')
./scripts/owner:from Mailman.Logging.Utils import LogStdErr
./scripts/owner:LogStdErr('error', 'mailowner')
./scripts/post:from Mailman.Logging.Utils import LogStdErr
./scripts/post:LogStdErr("error", "post")
./scripts/request:from Mailman.Logging.Utils import LogStdErr
./scripts/request:LogStdErr('error', 'mailcmd')
[skipping the build subdir]
-------------------- snip snip --------------------

What happens when you do "cvs -q up -P -d -A" ?

-Barry