aboutsummaryrefslogtreecommitdiffstats
path: root/servo/models/shipments.py
diff options
context:
space:
mode:
Diffstat (limited to 'servo/models/shipments.py')
-rw-r--r--servo/models/shipments.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/servo/models/shipments.py b/servo/models/shipments.py
index 9dba9b3..4daa6e2 100644
--- a/servo/models/shipments.py
+++ b/servo/models/shipments.py
@@ -183,7 +183,7 @@ class Shipment(models.Model):
super(Shipment, self).save(*args, **kwargs)
- def __unicode__(self):
+ def __str__(self):
return u'Shipment #%s from %s' % (self.pk, self.location.title)
class Meta: