summaryrefslogtreecommitdiffstats
path: root/source/n/pssh/pssh-read-stdin-as-bytes-in-Python-3.patch
diff options
context:
space:
mode:
author Patrick J Volkerding <volkerdi@slackware.com>2020-08-09 18:35:29 +0000
committer Eric Hameleers <alien@slackware.com>2020-08-10 08:59:55 +0200
commit3fb3209629a8c0403ef7080d1c6e730cd9c4c659 (patch)
tree00fd87a7ab2804219468c17685b52ff6335a51c6 /source/n/pssh/pssh-read-stdin-as-bytes-in-Python-3.patch
parentdd1713b41604e62761d3ddf3f51edff078028efe (diff)
downloadcurrent-3fb3209629a8c0403ef7080d1c6e730cd9c4c659.tar.gz
current-3fb3209629a8c0403ef7080d1c6e730cd9c4c659.tar.xz
Sun Aug 9 18:35:29 UTC 202020200809183529
a/kernel-firmware-20200807_c331aa9-noarch-1.txz: Upgraded. d/check-0.15.2-x86_64-1.txz: Upgraded. d/doxygen-1.8.19-x86_64-1.txz: Upgraded. d/re2c-2.0.2-x86_64-1.txz: Upgraded. d/strace-5.8-x86_64-1.txz: Upgraded. l/fuse3-3.9.3-x86_64-1.txz: Upgraded. l/imagemagick-7.0.10_26-x86_64-1.txz: Upgraded. n/iproute2-5.8.0-x86_64-1.txz: Upgraded. n/pssh-2.3.4-x86_64-1.txz: Upgraded. n/rsync-3.2.3-x86_64-1.txz: Upgraded. x/font-alias-1.0.4-noarch-1.txz: Upgraded. x/font-misc-ethiopic-1.0.4-noarch-1.txz: Upgraded.
Diffstat (limited to 'source/n/pssh/pssh-read-stdin-as-bytes-in-Python-3.patch')
-rw-r--r--source/n/pssh/pssh-read-stdin-as-bytes-in-Python-3.patch16
1 files changed, 0 insertions, 16 deletions
diff --git a/source/n/pssh/pssh-read-stdin-as-bytes-in-Python-3.patch b/source/n/pssh/pssh-read-stdin-as-bytes-in-Python-3.patch
deleted file mode 100644
index c64d77461..000000000
--- a/source/n/pssh/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)