diff options
author | Brian Curtin <brian.curtin@gmail.com> | 2010-07-09 15:58:59 (GMT) |
---|---|---|
committer | Brian Curtin <brian.curtin@gmail.com> | 2010-07-09 15:58:59 (GMT) |
commit | 74e4561a3cdf9d38caca4573b68e1c72fc489629 (patch) | |
tree | 55387806a4c157646ad6a39c37b8657ae3f82edc /Lib/test/test_platform.py | |
parent | c739569be09d4b271ae8a5d3d566254db6298c55 (diff) | |
download | cpython-74e4561a3cdf9d38caca4573b68e1c72fc489629.zip cpython-74e4561a3cdf9d38caca4573b68e1c72fc489629.tar.gz cpython-74e4561a3cdf9d38caca4573b68e1c72fc489629.tar.bz2 |
Re-flow several long lines from #1578269.
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', |