Fixed error in loading.

This commit is contained in:
Mike Holly
2011-12-26 18:22:05 -08:00
parent a4dffb0ac8
commit 1bae2deab0
2 changed files with 3 additions and 3 deletions

View File

@@ -48,7 +48,7 @@ PO.load = function(filename, callback) {
parts.forEach(function(part){
if (part.length < 1) return;
var item = PO.Item.parse(part);
po.items.push(item.toString());
po.items.push(item);
});
callback && callback(po);