From 62fb9cc5134ebeff2add4e403f5025a423d42d9e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaime=20Marqu=C3=ADnez=20Ferr=C3=A1ndiz?= Date: Mon, 1 Jul 2024 23:10:47 +0200 Subject: [PATCH] tagged_pages: Don't bring in scope another Plugin (#442) Nikola was complaining that the plugin had multiple plugin classes and it would not load it. --- v8/tagged_pages/tagged_pages.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/v8/tagged_pages/tagged_pages.py b/v8/tagged_pages/tagged_pages.py index 206d8b49..38fdfef6 100644 --- a/v8/tagged_pages/tagged_pages.py +++ b/v8/tagged_pages/tagged_pages.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -# Copyright © 2012-2020 Roberto Alsina and others. +# Copyright © 2012-2024 Roberto Alsina and others. # Permission is hereby granted, free of charge, to any # person obtaining a copy of this software and associated @@ -28,10 +28,10 @@ from nikola import utils -from nikola.plugins.task.tags import ClassifyTags +from nikola.plugins.task import tags -class ClassifyPagesByTags(ClassifyTags): +class ClassifyPagesByTags(tags.ClassifyTags): """Classify the posts by tags.""" name = "tagged_pages"