aboutsummaryrefslogtreecommitdiff
path: root/app/dispatch/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'app/dispatch/models.py')
-rw-r--r--app/dispatch/models.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/dispatch/models.py b/app/dispatch/models.py
index b0f76e5..0dde07b 100644
--- a/app/dispatch/models.py
+++ b/app/dispatch/models.py
@@ -58,7 +58,7 @@ class Load(models.Model):
return "/loads/view/%i" % self.id
def can_invoice(self):
- # Prevent 0 and $1 invoices as well as loads w/o attachments
+ # Prevent $0 and $1 invoices as well as loads w/o attachments
if self.amount >= 2 and len(self.paperwork_set.all()) >= 1:
return True
else: