summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdrian Sampson <adrian@radbox.org>2011-04-05 18:43:47 -0700
committerAdrian Sampson <adrian@radbox.org>2011-04-05 18:43:47 -0700
commit2dfae9721d4f3d61100fc66b5519ba1471e14d6d (patch)
treeffc58f9d43a3d1fd4e8421c9552b06a92d295765
parent4eead8d846abe5a9d889005c623aaf8f7321c0b5 (diff)
fix typo in dead code1.0b7
-rw-r--r--beets/library.py2
-rwxr-xr-xsetup.py1
2 files changed, 1 insertions, 2 deletions
diff --git a/beets/library.py b/beets/library.py
index 8907ec8f2..7c772af8f 100644
--- a/beets/library.py
+++ b/beets/library.py
@@ -741,7 +741,7 @@ class BaseLibrary(object):
"""
# Gather the unique album/artist names and associated example
# Items.
- specimens = set()
+ specimens = {}
for item in self.get(query, ALBUM_DEFAULT_FIELDS):
if (artist is None or item.artist == artist):
key = (item.artist, item.album)
diff --git a/setup.py b/setup.py
index 8321f6d56..5b2b3f5ef 100755
--- a/setup.py
+++ b/setup.py
@@ -60,4 +60,3 @@ setup(name='beets',
'Development Status :: 4 - Beta',
],
)
-