summaryrefslogtreecommitdiff
path: root/lib/net/ssh/multi/channel.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/net/ssh/multi/channel.rb')
-rw-r--r--lib/net/ssh/multi/channel.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/net/ssh/multi/channel.rb b/lib/net/ssh/multi/channel.rb
index c82ded1..8d33fa3 100644
--- a/lib/net/ssh/multi/channel.rb
+++ b/lib/net/ssh/multi/channel.rb
@@ -17,11 +17,11 @@ module Net; module SSH; module Multi
end
def [](key)
- @properties[key.to_sym]
+ @properties[key]
end
def []=(key, value)
- @properties[key.to_sym] = value
+ @properties[key] = value
end
def exec(command, &block)