From: Arnaud Giersch Date: Tue, 12 Feb 2019 12:57:20 +0000 (+0100) Subject: [tesh] Split setenv parameter on first '=' only. X-Git-Tag: v3_22~352 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/41ace32b5ffcd51fe79324b5353e5f1a6029d41e?ds=sidebyside [tesh] Split setenv parameter on first '=' only. --- diff --git a/tools/tesh/tesh.py b/tools/tesh/tesh.py index 85300665c9..16116ee001 100755 --- a/tools/tesh/tesh.py +++ b/tools/tesh/tesh.py @@ -81,7 +81,7 @@ def fatal_error(msg): # arg must be a string with the format "variable=value" def setenv(arg): print("[Tesh/INFO] setenv "+arg) - t = arg.split("=") + t = arg.split("=", 1) os.environ[t[0]] = t[1] #os.putenv(t[0], t[1]) does not work #see http://stackoverflow.com/questions/17705419/python-os-environ-os-putenv-usr-bin-env