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_sysconfig.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_sysconfig.py')
-rw-r--r-- | Lib/test/test_sysconfig.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_sysconfig.py b/Lib/test/test_sysconfig.py index 8314e66..672f355 100644 --- a/Lib/test/test_sysconfig.py +++ b/Lib/test/test_sysconfig.py @@ -244,8 +244,8 @@ class TestSysConfig(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"]) # Issue 7880 def get(python): |