diff options
| author | Luke Kanies <luke@madstop.com> | 2007-11-28 16:06:45 -0600 |
|---|---|---|
| committer | Luke Kanies <luke@madstop.com> | 2007-11-28 16:06:45 -0600 |
| commit | 421b3fce66db7ff69052bd666d20e746952bc52b (patch) | |
| tree | bb3ca879f704ac22c3868e79118f97a636d5d4a4 /lib/puppet | |
| parent | 11ae473e3852adcc382a3efea2329586d2e4bcb3 (diff) | |
| download | puppet-421b3fce66db7ff69052bd666d20e746952bc52b.tar.gz puppet-421b3fce66db7ff69052bd666d20e746952bc52b.tar.xz puppet-421b3fce66db7ff69052bd666d20e746952bc52b.zip | |
Another backward compatibility patch, this time helping with a new server and old client
Diffstat (limited to 'lib/puppet')
| -rw-r--r-- | lib/puppet/transportable.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/puppet/transportable.rb b/lib/puppet/transportable.rb index a448e28a5..cf92a3937 100644 --- a/lib/puppet/transportable.rb +++ b/lib/puppet/transportable.rb @@ -24,7 +24,7 @@ module Puppet end def initialize(name,type) - @type = type + @type = type.to_s.downcase @name = name @params = {} @tags = [] |
