mirror of
https://github.com/beetbox/beets.git
synced 2025-12-21 16:13:38 +01:00
move pipeline into new beets.util package
--HG-- rename : beets/ui/pipeline.py => beets/util/pipeline.py
This commit is contained in:
parent
3222cc6213
commit
2746f1ff3f
2 changed files with 2 additions and 2 deletions
|
|
@ -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):
|
||||
|
|
|
|||
Loading…
Reference in a new issue