From: Andrew Engelbrecht Date: Mon, 6 Mar 2017 18:31:06 +0000 (-0500) Subject: Updating plugin paths for /videos + /photos routes X-Git-Url: https://vcs.fsf.org/?p=mediagoblin-libreplanet.git;a=commitdiff_plain;h=7f8847829a190d78683f98ed4f3073f67a7542be Updating plugin paths for /videos + /photos routes these changes were found in the libreplanet plugin directory in the gmg installation. --- diff --git a/mediagoblin_libreplanet/__init__.py b/mediagoblin_libreplanet/__init__.py index b4eb7ce..fa9c112 100644 --- a/mediagoblin_libreplanet/__init__.py +++ b/mediagoblin_libreplanet/__init__.py @@ -69,9 +69,9 @@ def frontpage_view_hook(): return frontpage_view register_routes([('all-videos', '/videos', - 'mediagoblin_libreplanet.views:video_listing'), + 'mediagoblin.plugins.libreplanet.views:video_listing'), ('all-photos', '/photos', - 'mediagoblin_libreplanet.views:image_listing') + 'mediagoblin.plugins.libreplanet.views:image_listing') ]) # This is a dict that specifies which hooks this plugin uses.