10 lines
335 B
Python
10 lines
335 B
Python
from simplesvnbrowser.main_window import MainWindow
|
|
import subprocess
|
|
|
|
def run_svn(args):
|
|
completed_process = subprocess.run(
|
|
["svn", "--non-interactive"] + args,
|
|
stdout = subprocess.PIPE,
|
|
stderr = subprocess.PIPE)
|
|
return completed_process.stdout.decode(), completed_process.stderr.decode()
|