blob: 7fe08b9a4e2f168800030b5241cee25caf70b5f6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
--- psshlib/psshutil.py.orig 2020-04-05 06:12:36 UTC
+++ psshlib/psshutil.py
@@ -28,7 +28,10 @@ def read_host_file(path, host_glob, default_user=None,
Returns a list of (host, port, user) triples.
"""
lines = []
- f = open(path)
+ if path == "-":
+ f = open("/dev/stdin")
+ else:
+ f = open(path)
for line in f:
lines.append(line.strip())
f.close()
|