removed some / at the end of some URLs to be consistent with other URLs

This commit is contained in:
Fabien Potencier
2012-07-07 08:25:49 +02:00
parent 810043015b
commit e4b7a3fe8b
2 changed files with 2 additions and 2 deletions

View File

@@ -41,7 +41,7 @@ $app->get('{repo}/commit/{commit}/', function($repo, $commit) use($app) {
->assert('commit', '[a-f0-9]+')
->bind('commit');
$app->get('{repo}/blame/{branch}/{file}/', function($repo, $branch, $file) use($app) {
$app->get('{repo}/blame/{branch}/{file}', function($repo, $branch, $file) use($app) {
$repository = $app['git']->getRepository($app['git.repos'] . $repo);
$blames = $repository->getBlame("$branch -- $file");