-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use stdlib subprocess.run for gpg processes
This commit replaces calls to the custom process.run function, in favor of the stdlib subprocess.run. The former is a very thin wrapper around the latter, which was more useful when we still needed Py2/3 case-handling. Which is not the case anymore. NOTE: This commit replicates the prior behavior, most notably the following subprocess.run arguments: - *popenargs: we still use shlex.split to turn the full command string into a list - check Signed-off-by: Lukas Puehringer <[email protected]>
- Loading branch information
Showing
4 changed files
with
44 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters