diff options
| author | elijah <elijah@riseup.net> | 2012-10-23 11:18:39 -0700 | 
|---|---|---|
| committer | elijah <elijah@riseup.net> | 2012-10-23 11:18:39 -0700 | 
| commit | f87056ca4ff0b477bc9a7cb83496bbc4db39d652 (patch) | |
| tree | 7d9ac95ea346084fade9b9e54fc5045ae35f2115 | |
| parent | 2008e55bae7dddad3ad73ff9871d7ed205c67509 (diff) | |
fixed init-node typo bug
| -rw-r--r-- | lib/leap_cli/commands/util.rb | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/leap_cli/commands/util.rb b/lib/leap_cli/commands/util.rb index 803fe88..852d22c 100644 --- a/lib/leap_cli/commands/util.rb +++ b/lib/leap_cli/commands/util.rb @@ -130,7 +130,7 @@ module LeapCli; module Commands    def parse_node_list(nodes)      if nodes.is_a? Config::Object -      Config::ObjectList.new(node_list) +      Config::ObjectList.new(nodes)      elsif nodes.is_a? Config::ObjectList        nodes      elsif nodes.is_a? String  | 
