diff --git a/beets/importer.py b/beets/importer.py index 1c30b9794..b698c77b0 100644 --- a/beets/importer.py +++ b/beets/importer.py @@ -24,7 +24,7 @@ from beets import autotag from beets import library import beets.autotag.art from beets import plugins -from beets.ui import pipeline +from beets.util import pipeline CHOICE_SKIP = 'CHOICE_SKIP' CHOICE_ASIS = 'CHOICE_ASIS' @@ -405,7 +405,7 @@ def apply_choices(config): #TODO probably no longer necessary; use the same machinery? def simple_import(config): - """Add files from the paths to the library without changing any + """Add albums from the paths to the library without changing any tags. """ for task in read_albums(config): diff --git a/beets/ui/pipeline.py b/beets/util/pipeline.py similarity index 100% rename from beets/ui/pipeline.py rename to beets/util/pipeline.py