Skip to content

Commit

Permalink
Fix incredibly boneheaded bug re: direct-tcpip gatewaying
Browse files Browse the repository at this point in the history
  • Loading branch information
bitprophet committed Nov 15, 2012
1 parent f5ddfb2 commit df562b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fabric/network.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def connect(self, key):
gateway = normalize_to_string(env.gateway)
# Ensure initial gateway connection
if gateway not in self:
self[gateway] = connect(user, host, port)
self[gateway] = connect(*normalize(gateway))
# Now we should have an open gw connection and can ask it for a
# direct-tcpip channel to the real target. (Bypass our own
# __getitem__ override to avoid hilarity.)
Expand Down

0 comments on commit df562b6

Please sign in to comment.