Fixed a syntax issue

This commit is contained in:
Javier Eguiluz 2016-01-19 10:10:19 +01:00
parent 968476b707
commit 35f082f6ef
1 changed files with 1 additions and 1 deletions

View File

@ -91,7 +91,7 @@ class FilesystemLoader extends \Twig_Loader_Filesystem
if (false === $file || null === $file) {
try {
list($namespace, $name) = $this->parseName($logicalName);
$paths = sprintf(' (looked into: %s)', implode(', ', $this->getPaths($namespace)));;
$paths = sprintf(' (looked into: %s)', implode(', ', $this->getPaths($namespace)));
} catch (\Twig_Error_Loader $e) {
$paths = '';
}