Remove log declarations where it was unused

Easiest conversions!
This commit is contained in:
Bruno Cauet 2015-01-06 10:45:53 +01:00
parent 78ac338c28
commit 0617c0410f
2 changed files with 0 additions and 6 deletions

View file

@ -20,11 +20,8 @@ import re
import string
from itertools import tee, izip
from beets import logging
from beets import plugins, ui
log = logging.getLogger(__name__)
class BucketError(Exception):
pass

View file

@ -15,15 +15,12 @@
"""Creates freedesktop.org-compliant .directory files on an album level.
"""
from beets import logging
from beets.plugins import BeetsPlugin
from beets.ui import Subcommand
from beets.ui import decargs
import os
log = logging.getLogger(__name__)
def process_query(lib, opts, args):
for album in lib.albums(decargs(args)):