From 0947a60969684dfbc3dc904f0837dda2491a271a Mon Sep 17 00:00:00 2001 From: krisawzm Date: Sat, 25 Apr 2015 04:10:51 +0200 Subject: [PATCH] Fixes missing argument for sprintf --- modules/system/console/ThemeInstall.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/system/console/ThemeInstall.php b/modules/system/console/ThemeInstall.php index e0cd0c22f..795c20d2e 100644 --- a/modules/system/console/ThemeInstall.php +++ b/modules/system/console/ThemeInstall.php @@ -75,7 +75,7 @@ class ThemeInstall extends Command $dirName = $argDirName; } - $this->info(sprintf('The theme %s has been installed. (now %s)', $dirName)); + $this->info(sprintf('The theme %s has been installed. (now %s)', $themeDetails['code'], $dirName)); } catch (\October\Rain\Exception\ApplicationException $e) { $this->error($e->getMessage());