Removed duplication of truncate_to_length routine

This commit is contained in:
Rudi Grinberg 2012-10-02 13:30:02 -04:00
parent 396e857035
commit 30c95f3e9d
1 changed files with 1 additions and 7 deletions

View File

@ -8,7 +8,7 @@ from mutagen.easyid3 import EasyID3KeyError
from media.monitor.exceptions import BadSongFile, InvalidMetadataElement
from media.monitor.log import Loggable
from media.monitor.pure import format_length
from media.monitor.pure import format_length, truncate_to_length
import media.monitor.pure as mmp
"""
@ -95,12 +95,6 @@ truncate_table = {
'MDATA_KEY_COPYRIGHT' : 512,
}
def truncate_to_length(item, length):
if isinstance(item, int): item = str(item)
if isinstance(item, basestring):
if len(item) > length: return item[0:length]
else: return item
class Metadata(Loggable):
# TODO : refactor the way metadata is being handled. Right now things are a
# little bit messy. Some of the handling is in m.m.pure while the rest is