Skip to content

Commit b63cae6

Browse files
committed
fix 0.7 deprecation
1 parent 9e4b6d9 commit b63cae6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/comm_manager.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ comm_target(comm :: Comm{target}) where {target} = target
4747
function comm_info_request(sock, msg)
4848
reply = if haskey(msg.content, "target_name")
4949
t = Symbol(msg.content["target_name"])
50-
filter((k, v) -> comm_target(v) == t, comms)
50+
filter(kv -> comm_target(kv.second) == t, comms)
5151
else
5252
# reply with all comms.
5353
comms

0 commit comments

Comments
 (0)