--- /home/dag/item.py.orig 2005-05-12 03:57:51.000000000 -0400 +++ item.py 2005-05-12 03:58:16.000000000 -0400 @@ -244,7 +244,7 @@ d.update(self.song.__dict__) d.update(adddict) d["minutes"], d["seconds"] = divmod(d["length"], 60) - d["length"] = "%d:%2d" % (d["minutes"], d["seconds"]) + d["length"] = "%d:%02d" % (d["minutes"], d["seconds"]) if safe: allowedchars = string.letters + string.digits + " :"