Skip to content
This repository has been archived by the owner on Aug 29, 2018. It is now read-only.

Commit

Permalink
Bug 910442 - Write config file without quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
smarterclayton committed Feb 13, 2013
1 parent 81758b6 commit cd5b716
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/rhc/config.rb
Expand Up @@ -76,7 +76,7 @@ def self.type_to_config(type, value)
when :integer, :boolean
value.nil? ? "<#{type}>" : value
else
"\"#{value.nil? ? "<#{type || 'string'}>" : value}\""
value.nil? ? "<#{type || 'string'}>" : value
end
end

Expand Down

0 comments on commit cd5b716

Please sign in to comment.