summaryrefslogtreecommitdiffstats
path: root/lib/puppet
diff options
context:
space:
mode:
authorLuke Kanies <luke@madstop.com>2007-11-28 16:06:45 -0600
committerLuke Kanies <luke@madstop.com>2007-11-28 16:06:45 -0600
commit421b3fce66db7ff69052bd666d20e746952bc52b (patch)
treebb3ca879f704ac22c3868e79118f97a636d5d4a4 /lib/puppet
parent11ae473e3852adcc382a3efea2329586d2e4bcb3 (diff)
downloadpuppet-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.rb2
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 = []