diff --git a/kiri-engine/Abstracts/BaseApplication.php b/kiri-engine/Abstracts/BaseApplication.php index e7988b1a..7dda6af8 100644 --- a/kiri-engine/Abstracts/BaseApplication.php +++ b/kiri-engine/Abstracts/BaseApplication.php @@ -112,7 +112,7 @@ abstract class BaseApplication extends Component mkdir($storage, 0777, true); } if (!is_dir($storage) || !is_writeable($storage)) { - throw new InitException("Directory {$storage} does not have write permission"); + throw new InitException("Directory $storage does not have write permission"); } }