mirror of
https://github.com/Maks1mS/altlinux-autorepacked.git
synced 2024-12-25 07:24:40 +03:00
10 lines
169 B
Python
10 lines
169 B
Python
import subprocess
|
|
|
|
|
|
def run(args, cwd=None):
|
|
return subprocess.run(
|
|
args=args,
|
|
cwd=cwd,
|
|
stdout=subprocess.PIPE,
|
|
).stdout.decode('utf-8')
|