From 30c95f3e9dabf4aea3c8074e9acbca6ee89467a0 Mon Sep 17 00:00:00 2001 From: Rudi Grinberg Date: Tue, 2 Oct 2012 13:30:02 -0400 Subject: [PATCH] Removed duplication of truncate_to_length routine --- python_apps/media-monitor2/media/monitor/metadata.py | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/python_apps/media-monitor2/media/monitor/metadata.py b/python_apps/media-monitor2/media/monitor/metadata.py index 063c1211c..c42c54587 100644 --- a/python_apps/media-monitor2/media/monitor/metadata.py +++ b/python_apps/media-monitor2/media/monitor/metadata.py @@ -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