diff options
Diffstat (limited to 'lldb/test/dotest.py')
-rwxr-xr-x | lldb/test/dotest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/test/dotest.py b/lldb/test/dotest.py index bdb51687a02..0e2b1099148 100755 --- a/lldb/test/dotest.py +++ b/lldb/test/dotest.py @@ -1027,7 +1027,7 @@ with open(fname, "w") as f: for env_var in unsets : if env_var in os.environ: # From Python Doc: When unsetenv() is supported, deletion of items in os.environ - # is automatically translated into a corresponding call to unsetenv() + # is automatically translated into a corresponding call to unsetenv(). del os.environ[env_var] #os.unsetenv(env_var) |