Import beets.ui in discogs plugin

The discogs plugin uses beets.ui but did not explicitely import it,
which might cause it to crash when used in standalone.
This commit is contained in:
Bruno Cauet 2015-01-16 17:59:35 +01:00
parent d2726e1c25
commit 7c2d5f0948

View file

@ -15,6 +15,7 @@
"""Adds Discogs album search support to the autotagger. Requires the
discogs-client library.
"""
import beets.ui
from beets import logging
from beets.autotag.hooks import AlbumInfo, TrackInfo, Distance
from beets.plugins import BeetsPlugin