diff options
author | Filipp Lepalaan <filipp@mac.com> | 2015-10-26 22:47:14 +0200 |
---|---|---|
committer | Filipp Lepalaan <filipp@mac.com> | 2015-10-26 22:47:14 +0200 |
commit | 86d92524effd9eead4c4d52f07a81cd17a4e96ac (patch) | |
tree | d394d951d54b274f4b4d7e80d80bf62edfc6cc0f /servo | |
parent | ed1a78c2119b47b2f43030eb7b69d1e99dfa3251 (diff) | |
download | Servo-86d92524effd9eead4c4d52f07a81cd17a4e96ac.tar.gz Servo-86d92524effd9eead4c4d52f07a81cd17a4e96ac.tar.bz2 Servo-86d92524effd9eead4c4d52f07a81cd17a4e96ac.zip |
Fix silly syntax error
Diffstat (limited to 'servo')
-rw-r--r-- | servo/models/order.py | 2 |
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): |