fix missing argument for sprintf method

This commit is contained in:
Manuel Raynaud
2013-07-12 09:08:51 +02:00
parent ac170ac25f
commit 8e975a9b62
2 changed files with 2 additions and 2 deletions

View File

@@ -55,7 +55,7 @@ class ModuleGenerateSqlCommand extends BaseModuleGenerate {
$fs = new Filesystem();
if ($fs->exists($this->moduleDirectory) === false) {
throw new \RuntimeException(sprintf("%s module does not exists"));
throw new \RuntimeException(sprintf("%s module does not exists", $this->module));
}
if ($fs->exists($this->moduleDirectory . DS . "Config" . DS . "schema.xml") === false) {