summaryrefslogtreecommitdiff
path: root/pygments/plugin.py
diff options
context:
space:
mode:
Diffstat (limited to 'pygments/plugin.py')
-rw-r--r--pygments/plugin.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pygments/plugin.py b/pygments/plugin.py
index 89300677..5e09c123 100644
--- a/pygments/plugin.py
+++ b/pygments/plugin.py
@@ -68,7 +68,7 @@ def find_plugin_styles():
def find_plugin_filters():
- if pkg_recources is None:
+ if pkg_resources is None:
return
for entrypoint in pkg_resources.iter_entry_points(FILTER_ENTRY_POINT):
yield entrypoint.name, entrypoint.load()