aboutsummaryrefslogtreecommitdiffstats
path: root/community/borgmatic/python3.patch
diff options
context:
space:
mode:
Diffstat (limited to 'community/borgmatic/python3.patch')
-rw-r--r--community/borgmatic/python3.patch11
1 files changed, 11 insertions, 0 deletions
diff --git a/community/borgmatic/python3.patch b/community/borgmatic/python3.patch
new file mode 100644
index 00000000000..86eea9c0632
--- /dev/null
+++ b/community/borgmatic/python3.patch
@@ -0,0 +1,11 @@
+--- a/tests/integration/test_execute.py
++++ b/tests/integration/test_execute.py
+@@ -80,7 +80,7 @@ def test_log_outputs_logs_multiline_error_output():
+ flexmock(module).should_receive('command_for_process').and_return('grep')
+
+ process = subprocess.Popen(
+- ['python', '-c', 'foopydoo'], stdout=subprocess.PIPE, stderr=subprocess.STDOUT
++ ['python3', '-c', 'foopydoo'], stdout=subprocess.PIPE, stderr=subprocess.STDOUT
+ )
+ flexmock(module).should_receive('output_buffer_for_process').and_return(process.stdout)
+ flexmock(module.logger).should_call('log').at_least().times(3)