ticket reference

This commit is contained in:
Jean-Paul Calderone 2020-12-07 10:46:20 -05:00
parent 1a77ba5698
commit 61ee26fb00

View File

@ -2618,7 +2618,8 @@ class SystemTest(SystemTestMixin, RunBinTahoeMixin, unittest.TestCase):
def _run_in_subprocess(ignored, verb, *args, **kwargs):
stdin = kwargs.get("stdin")
env = kwargs.get("env", os.environ) # XXX Gets mutated below, great.
# XXX https://tahoe-lafs.org/trac/tahoe-lafs/ticket/3548
env = kwargs.get("env", os.environ)
# Python warnings from the child process don't matter.
env["PYTHONWARNINGS"] = "ignore"
newargs = ["--node-directory", self.getdir("client0"), verb] + list(args)