8000 [FrameworkBundle] Fix broken exception message · symfony/symfony@8e9860c · GitHub
[go: up one dir, main page]

Skip to content

Commit 8e9860c

Browse files
author
Robin Chalas
committed
[FrameworkBundle] Fix broken exception message
1 parent 060751d commit 8e9860c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Bundle/FrameworkBundle/Command/TranslationUpdateCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
108108
$currentName = $transPaths[0];
109109

110110
if (!is_dir($transPaths[0])) {
111-
throw new \InvalidArgumentException(sprintf('<error>"%s" is neither an enabled bundle nor a directory.</error>', $transPaths[0]));
111+
throw new \InvalidArgumentException(sprintf('"%s" is neither an enabled bundle nor a directory.', $transPaths[0]));
112112
}
113113
}
114114
}

0 commit comments

Comments
 (0)
0