added missing commas to routes registration

master
Andrew Engelbrecht 7 years ago
parent f10f17554d
commit 35fd7d3bb6
  1. 4
      mediagoblin_libreplanet/__init__.py

@ -75,9 +75,9 @@ def frontpage_view_hook():
register_routes([('all-videos', '/videos',
'mediagoblin.plugins.libreplanet.views:video_listing'),
('all-photos', '/photos',
'mediagoblin.plugins.libreplanet.views:image_listing')
'mediagoblin.plugins.libreplanet.views:image_listing'),
('all-photos', '/videos/featured',
'mediagoblin.plugins.libreplanet.views:featured_video_listing')
'mediagoblin.plugins.libreplanet.views:featured_video_listing'),
('all-photos', '/photos/featured',
'mediagoblin.plugins.libreplanet.views:featured_image_listing')
])

Loading…
Cancel
Save