diff options
Diffstat (limited to 'Lib/test/test_platform.py')
-rw-r--r-- | Lib/test/test_platform.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_platform.py b/Lib/test/test_platform.py index 51f47db..ba3af1a 100644 --- a/Lib/test/test_platform.py +++ b/Lib/test/test_platform.py @@ -15,8 +15,8 @@ class PlatformTest(unittest.TestCase): # On Windows, the EXE needs to know where pythonXY.dll is at so we have # to add the directory to the path. if sys.platform == "win32": - os.environ["Path"] = "{};{}".format(os.path.dirname(sys.executable), - os.environ["Path"]) + os.environ["Path"] = "{};{}".format( + os.path.dirname(sys.executable), os.environ["Path"]) def get(python): cmd = [python, '-c', |