msg = 'exited due to signal %d'
else:
msg = 'exit status %d'
- Exception.__init__(self, msg % (status,))
+ Exception.__init__(self, msg % (abs(status),))
self.status = status
self.stderr = stderr
all_tags = {}
# Build the collated result in this Tags object.
coll_tags = Tags()
+ # XXX The Tags interface is horrible. It's gotta be almost 10 years since
+ # I wrote it, so not surprising...
for fn in filenames:
tags = get_tags(fn)
track_tags = tags.get('TRACKNUMBER')