summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorJamis Buck <jamis@37signals.com>2008-03-29 22:56:05 -0600
committerJamis Buck <jamis@37signals.com>2008-03-29 22:56:05 -0600
commit2ea62eb4cd9dbc82f8f24536d44318f55962998d (patch)
treefe4e6736793104c992e616bc3ac9db405adc304d /lib
parent7f67b8f7e27d72073277b5cd2120631929ca39e7 (diff)
downloadnet-ssh-multi-2ea62eb4cd9dbc82f8f24536d44318f55962998d.tar.gz
first pass at tests
Diffstat (limited to 'lib')
-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)