fixed build failure

This commit is contained in:
Arvedui 2015-02-22 15:03:32 +01:00
parent 68813026e6
commit 787e8d2623

View File

@ -109,8 +109,8 @@ class MPD(IntervalModule):
full_text = formatp(self.format, **fdict).strip() full_text = formatp(self.format, **fdict).strip()
full_text_len = len(full_text) full_text_len = len(full_text)
if full_text_len > self.max_len and self.max_len > 0: if full_text_len > self.max_len and self.max_len > 0:
shrink = floor((self.max_len - full_text_len) shrink = floor((self.max_len - full_text_len) /
/ len(self.truncate_fields)) - 1 len(self.truncate_fields)) - 1
for key in self.truncate_fields: for key in self.truncate_fields:
fdict[key] = fdict[key][:shrink] + "" fdict[key] = fdict[key][:shrink] + ""