summarylogtreecommitdiffstats
path: root/pssh-read-stdin-as-bytes-in-Python-3.patch
diff options
context:
space:
mode:
authorHyacinthe Cartiaux2023-06-09 14:37:46 +0200
committerHyacinthe Cartiaux2023-06-09 14:37:46 +0200
commit798e8e96bd57bb224893138c499c81f0c8d1c428 (patch)
tree8a7b9429a785681174fe8ac6a97409b6bf6e79b3 /pssh-read-stdin-as-bytes-in-Python-3.patch
parentf6baad94fb1c7f0ea3638f59d8382f2e2fdc57c9 (diff)
downloadaur-python-pssh.tar.gz
Pkgrel bump - remove upstreamed patches
Diffstat (limited to 'pssh-read-stdin-as-bytes-in-Python-3.patch')
-rw-r--r--pssh-read-stdin-as-bytes-in-Python-3.patch16
1 files changed, 0 insertions, 16 deletions
diff --git a/pssh-read-stdin-as-bytes-in-Python-3.patch b/pssh-read-stdin-as-bytes-in-Python-3.patch
deleted file mode 100644
index c64d77461cb2..000000000000
--- a/pssh-read-stdin-as-bytes-in-Python-3.patch
+++ /dev/null
@@ -1,16 +0,0 @@
-diff --git a/bin/pssh b/bin/pssh
-index 860bad2..5fe726d 100755
---- a/bin/pssh
-+++ b/bin/pssh
-@@ -65,7 +65,10 @@ def do_pssh(hosts, cmdline, opts):
- if opts.errdir and not os.path.exists(opts.errdir):
- os.makedirs(opts.errdir)
- if opts.send_input:
-- stdin = sys.stdin.read()
-+ if hasattr(sys.stdin, 'buffer'):
-+ stdin = sys.stdin.buffer.read()
-+ else:
-+ stdin = sys.stdin.read()
- else:
- stdin = None
- manager = Manager(opts)