aboutsummaryrefslogtreecommitdiffstats
path: root/servo/models
diff options
context:
space:
mode:
authorFilipp Lepalaan <filipp@mac.com>2015-10-26 22:47:14 +0200
committerFilipp Lepalaan <filipp@mac.com>2015-10-26 22:47:14 +0200
commit86d92524effd9eead4c4d52f07a81cd17a4e96ac (patch)
treed394d951d54b274f4b4d7e80d80bf62edfc6cc0f /servo/models
parented1a78c2119b47b2f43030eb7b69d1e99dfa3251 (diff)
downloadServo-86d92524effd9eead4c4d52f07a81cd17a4e96ac.tar.gz
Servo-86d92524effd9eead4c4d52f07a81cd17a4e96ac.tar.bz2
Servo-86d92524effd9eead4c4d52f07a81cd17a4e96ac.zip
Fix silly syntax error
Diffstat (limited to 'servo/models')
-rw-r--r--servo/models/order.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/servo/models/order.py b/servo/models/order.py
index f163f9b..1a76a37 100644
--- a/servo/models/order.py
+++ b/servo/models/order.py
@@ -385,7 +385,7 @@ class Order(models.Model):
def get_status_description(self):
if self.status is None:
return _('Order is waiting to be processed')
- else
+ else:
return self.status.status.description
def get_status_id(self):