mirror of
https://github.com/beetbox/beets.git
synced 2026-02-19 05:45:33 +01:00
add a missing __future__ import in embedart
This commit is contained in:
parent
5a2dc91b98
commit
3b2ea5d289
4 changed files with 23 additions and 2 deletions
4
NEWS
4
NEWS
|
|
@ -1,3 +1,7 @@
|
|||
1.0b10
|
||||
------
|
||||
* Fix a missing __future__ import in embedart on Python 2.5.
|
||||
|
||||
1.0b9
|
||||
-----
|
||||
* Queries can now contain whitespace. Spaces passed as shell
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@
|
|||
# The above copyright notice and this permission notice shall be
|
||||
# included in all copies or substantial portions of the Software.
|
||||
|
||||
__version__ = '1.0b9'
|
||||
__version__ = '1.0b10'
|
||||
__author__ = 'Adrian Sampson <adrian@radbox.org>'
|
||||
|
||||
import beets.library
|
||||
|
|
|
|||
|
|
@ -1,3 +1,20 @@
|
|||
# This file is part of beets.
|
||||
# Copyright 2011, Adrian Sampson.
|
||||
#
|
||||
# Permission is hereby granted, free of charge, to any person obtaining
|
||||
# a copy of this software and associated documentation files (the
|
||||
# "Software"), to deal in the Software without restriction, including
|
||||
# without limitation the rights to use, copy, modify, merge, publish,
|
||||
# distribute, sublicense, and/or sell copies of the Software, and to
|
||||
# permit persons to whom the Software is furnished to do so, subject to
|
||||
# the following conditions:
|
||||
#
|
||||
# The above copyright notice and this permission notice shall be
|
||||
# included in all copies or substantial portions of the Software.
|
||||
|
||||
"""Allows beets to embed album art into file metadata."""
|
||||
from __future__ import with_statement
|
||||
|
||||
import logging
|
||||
import imghdr
|
||||
|
||||
|
|
|
|||
2
setup.py
2
setup.py
|
|
@ -22,7 +22,7 @@ def _read(fn):
|
|||
return open(path).read()
|
||||
|
||||
setup(name='beets',
|
||||
version='1.0b9',
|
||||
version='1.0b10',
|
||||
description='music tagger and library organizer',
|
||||
author='Adrian Sampson',
|
||||
author_email='adrian@radbox.org',
|
||||
|
|
|
|||
Loading…
Reference in a new issue