diff --git a/python/lib/dependabot/python/file_updater/pipfile_file_updater.rb b/python/lib/dependabot/python/file_updater/pipfile_file_updater.rb index 828e245a61..ba179a226a 100644 --- a/python/lib/dependabot/python/file_updater/pipfile_file_updater.rb +++ b/python/lib/dependabot/python/file_updater/pipfile_file_updater.rb @@ -246,7 +246,7 @@ def generate_updated_requirements_files def run_command(command, env: {}) start = Time.now command = SharedHelpers.escape_command(command) - stdout, process = Open3.capture2e(env, command) + stdout, _, process = Open3.capture3(env, command) time_taken = Time.now - start # Raise an error with the output from the shell session if Pipenv