Skip to content

Commit f8d9e4c

Browse files
authored
Fix the number of arguments
1 parent 1c5cca3 commit f8d9e4c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

bin/stashcp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,7 @@ def get_ips(name):
360360
ipv4s = []
361361
ipv6s = []
362362
try:
363-
info = socket.getaddrinfo(name, 0, 0, socket.IPPROTO_TCP)
363+
info = socket.getaddrinfo(name, 0, 0, 0, socket.IPPROTO_TCP)
364364
except:
365365
logging.error("Unable to look up %s", name)
366366
return []

0 commit comments

Comments
 (0)