mirror of
https://github.com/beetbox/beets.git
synced 2025-12-24 09:33:46 +01:00
Remove log declarations where it was unused
Easiest conversions!
This commit is contained in:
parent
78ac338c28
commit
0617c0410f
2 changed files with 0 additions and 6 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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)):
|
||||
|
|
|
|||
Loading…
Reference in a new issue