Style: Apply format changes from latest psf/black git

This commit is contained in:
Rémi Verschelde 2020-08-21 01:34:47 +02:00
parent 4e52c75a98
commit 4f96c65e13
No known key found for this signature in database
GPG Key ID: C3336907360768E1
1 changed files with 3 additions and 6 deletions

View File

@ -555,18 +555,15 @@ def generate_vs_project(env, num_jobs):
# last double quote off, confusing MSBuild # last double quote off, confusing MSBuild
env["MSVSBUILDCOM"] = build_commandline( env["MSVSBUILDCOM"] = build_commandline(
"scons --directory=\"$(ProjectDir.TrimEnd('\\'))\" platform=windows progress=no target=$(Configuration)" "scons --directory=\"$(ProjectDir.TrimEnd('\\'))\" platform=windows progress=no target=$(Configuration)"
" tools=!tools! -j" " tools=!tools! -j" + str(num_jobs)
+ str(num_jobs)
) )
env["MSVSREBUILDCOM"] = build_commandline( env["MSVSREBUILDCOM"] = build_commandline(
"scons --directory=\"$(ProjectDir.TrimEnd('\\'))\" platform=windows progress=no target=$(Configuration)" "scons --directory=\"$(ProjectDir.TrimEnd('\\'))\" platform=windows progress=no target=$(Configuration)"
" tools=!tools! vsproj=yes -j" " tools=!tools! vsproj=yes -j" + str(num_jobs)
+ str(num_jobs)
) )
env["MSVSCLEANCOM"] = build_commandline( env["MSVSCLEANCOM"] = build_commandline(
"scons --directory=\"$(ProjectDir.TrimEnd('\\'))\" --clean platform=windows progress=no" "scons --directory=\"$(ProjectDir.TrimEnd('\\'))\" --clean platform=windows progress=no"
" target=$(Configuration) tools=!tools! -j" " target=$(Configuration) tools=!tools! -j" + str(num_jobs)
+ str(num_jobs)
) )
# This version information (Win32, x64, Debug, Release, Release_Debug seems to be # This version information (Win32, x64, Debug, Release, Release_Debug seems to be