Skip to content

Commit

Permalink
tagged_pages: Don't bring in scope another Plugin (#442)
Browse files Browse the repository at this point in the history
Nikola was complaining that the plugin had multiple plugin classes and it would not load it.
  • Loading branch information
jaimeMF authored Jul 1, 2024
1 parent 23d373f commit 62fb9cc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions v8/tagged_pages/tagged_pages.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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"
Expand Down

0 comments on commit 62fb9cc

Please sign in to comment.