Cli: Remove useless sprintf format in Command::fail()

This commit is contained in:
Eric Lippmann 2014-12-30 14:41:00 +01:00
parent 5e812c72f1
commit 70c564bb0e

View File

@ -128,7 +128,7 @@ abstract class Command
public function fail($msg) public function fail($msg)
{ {
throw new IcingaException('%s', $msg); throw new IcingaException($msg);
} }
public function getDefaultActionName() public function getDefaultActionName()