--- a/README
+++ b/README
@@ -1,7 +1,7 @@
mp3togo
-(C) 2004, 2006 Simeon Veldstra <reallifesim@gmail.com>
+(C) 2004 - 2006 Simeon Veldstra <reallifesim@gmail.com>
INSTALLING
--- a/copyright
+++ b/copyright
@@ -3,7 +3,7 @@ mp3togo
Software to manage playlists for mp3 players.
(C) Copyright 2004-2006 Simeon Veldstra <reallifesim@gmail.com>
-All rights reserved.
+Some rights reserved.
This software is free and may be redistributed under the
terms of the GNU General Public License, version 2 or later.
--- a/debian/copyright
+++ b/debian/copyright
@@ -4,7 +4,7 @@ on Wed, 26 Apr 2006 19:44:29 -0700.
The original source can always be found at:
ftp://ftp.debian.org/dists/unstable/main/source/
-Copyright (C) 2005 Simeon Veldstra
+Copyright (C) 2004 - 2006 Simeon Veldstra
License:
--- a/debian/docs
+++ b/debian/docs
@@ -1 +1 @@
-README
+
--- a/debian/mp3togo.1
+++ b/debian/mp3togo.1
@@ -134,4 +134,4 @@ License can be found in /usr/share/commo
.PP
mp3togo can be found online at http://puddle.ca/mp3togo
-.\" created by instant / docbook-to-man, Wed 28 Jun 2006, 23:10
+.\" created by instant / docbook-to-man, Tue 04 Jul 2006, 06:03
--- a/mp3togo/tags.py
+++ b/mp3togo/tags.py
@@ -101,7 +101,7 @@ class Tags(UserDict.DictMixin):
self._tags['ARTIST'] = [eye.getArtist() or '']
self._tags['ALBUM'] = [eye.getAlbum() or '']
self._tags['TITLE'] = [eye.getTitle() or '']
- self._tags['GENRE'] = [eye.getGenre().name or 'Other']
+ self._tags['GENRE'] = [getattr(eye.getGenre(), 'name', 'Other')]
del eye
elif HAVE_ID3:
info = ID3.ID3(self._file, as_tuple=1).as_dict()