No need to %Q for simple interpolations

This commit is contained in:
Akira Matsuda 2016-10-12 07:45:06 +09:00
parent 7050a61e16
commit fe2df4b2c4
1 changed files with 2 additions and 2 deletions

View File

@ -26,10 +26,10 @@ BANNER
if theme = self.class.themes.detect {|t| t.name == file_name}
if download_templates(theme).empty?
say %Q[template_engine: #{template_engine} is not available for theme: #{file_name}]
say "template_engine: #{template_engine} is not available for theme: #{file_name}"
end
else
say %Q[no such theme: #{file_name}\n available themes: #{self.class.themes.map(&:name).join ', '}]
say "no such theme: #{file_name}\n available themes: #{self.class.themes.map(&:name).join ', '}"
end
end