add a missing __future__ import in embedart

This commit is contained in:
Adrian Sampson 2011-07-10 12:07:52 -07:00
parent 5a2dc91b98
commit 3b2ea5d289
4 changed files with 23 additions and 2 deletions

4
NEWS
View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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',