Skip to content

Commit

Permalink
Don't leak pipenv warnings into manifest files
Browse files Browse the repository at this point in the history
  • Loading branch information
deivid-rodriguez committed Nov 11, 2022
1 parent 8cb8c55 commit 9c1447c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 9c1447c

Please sign in to comment.