X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/b8df87e176f27b25534f27d7e240defa32ca35bc..41ace32b5ffcd51fe79324b5353e5f1a6029d41e:/tools/tesh/tesh.py?ds=sidebyside diff --git a/tools/tesh/tesh.py b/tools/tesh/tesh.py index 0516672215..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 @@ -326,7 +326,7 @@ class Cmd(object): except PermissionError: print("["+FileReader().filename+":"+str(self.linenumber)+"] Cannot start '"+args[0]+"': The binary is not executable.") print("["+FileReader().filename+":"+str(self.linenumber)+"] Current dir: "+os.getcwd()) - tesh_exit(3) + tesh_exit(3) except NotADirectoryError: print("["+FileReader().filename+":"+str(self.linenumber)+"] Cannot start '"+args[0]+"': The path to binary does not exist.") print("["+FileReader().filename+":"+str(self.linenumber)+"] Current dir: "+os.getcwd())