mirror of
https://github.com/beetbox/beets.git
synced 2025-12-06 16:42:42 +01:00
Removed re and added brackets
This commit is contained in:
parent
a2136e1100
commit
1696789cbe
1 changed files with 1 additions and 2 deletions
|
|
@ -19,7 +19,6 @@ import itertools
|
||||||
import logging
|
import logging
|
||||||
import os
|
import os
|
||||||
import pkgutil
|
import pkgutil
|
||||||
import re
|
|
||||||
import sys
|
import sys
|
||||||
from unittest.mock import ANY, Mock, patch
|
from unittest.mock import ANY, Mock, patch
|
||||||
|
|
||||||
|
|
@ -582,7 +581,7 @@ class TestImportAllPlugins(PluginMixin):
|
||||||
|
|
||||||
caplog.set_level(logging.WARNING)
|
caplog.set_level(logging.WARNING)
|
||||||
caplog.clear()
|
caplog.clear()
|
||||||
plugins.load_plugins(plugin_name)
|
plugins.load_plugins([plugin_name])
|
||||||
|
|
||||||
# Check for warnings, is a bit hacky but we can make full use of the beets
|
# Check for warnings, is a bit hacky but we can make full use of the beets
|
||||||
# load_plugins code that way
|
# load_plugins code that way
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue