From 7f8847829a190d78683f98ed4f3073f67a7542be Mon Sep 17 00:00:00 2001 From: Andrew Engelbrecht Date: Mon, 6 Mar 2017 13:31:06 -0500 Subject: [PATCH] Updating plugin paths for /videos + /photos routes these changes were found in the libreplanet plugin directory in the gmg installation. --- mediagoblin_libreplanet/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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.