configuration-in-hiera
Robert Gerus 2015-04-19 18:26:37 +02:00
parent ba8bbb6c97
commit 70d0cf8e7e
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ Client.register_command("at") { |args|
r_msg += "now: #{now.join(' ')}#{Config.lookup("commands::at::separator")} " if not now.empty?
r_msg += "recently: #{recently.join(' ')}#{Config.lookup("commands::at::separator")} " if not recently.empty?
r_msg += Config.lookup("commands::at::empty") if now.empty? and recently.empty?
r_msg += "unknown: #{h[:unknown]}#{Config.lookup("commands::at::separator")} " if h[:unknown] > 0
r_msg += "unknown: #{h["unknown"]}#{Config.lookup("commands::at::separator")} " if h["unknown"] > 0
r_msg
}