From 7139cf45633184161616962750971ebe52ee6bcb Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Fri, 7 Jan 2011 15:25:11 +0100 Subject: Correct error on warehouse save (closes #58) --- ishtar/furnitures/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ishtar/furnitures/models.py b/ishtar/furnitures/models.py index 65307e15a..112970bb1 100644 --- a/ishtar/furnitures/models.py +++ b/ishtar/furnitures/models.py @@ -495,7 +495,7 @@ class Warehouse(Address, OwnPerms): ) def __unicode__(self): - return self.warehouse_type + return unicode(self.warehouse_type) class ActType(GeneralType): class Meta: -- cgit v1.2.3