Fixing flake8 errors and warnings after rebasing

This commit is contained in:
Yannick Jadoul
2020-02-19 17:10:17 +01:00
parent 0423d79e63
commit fc0dbe15d5
4 changed files with 13 additions and 11 deletions
+1 -1
View File
@@ -96,7 +96,7 @@ def build(project_dir, output_dir, test_command, test_requires, test_extras, bef
if config.version[0] == '3':
patch_file = os.path.abspath(os.path.join(os.path.dirname(__file__), 'resources', 'pypy3.6.patch'))
sysconfigdata_file = os.path.join(os.path.dirname(installation_bin_path), 'lib_pypy', '_sysconfigdata.py')
subprocess.call(['patch', sysconfigdata_file, patch_file , '-N']) # Always has nonzero return code
subprocess.call(['patch', sysconfigdata_file, patch_file, '-N']) # Always has nonzero return code
else:
raise ValueError("Unknown Python implementation")