Fixed weird line break in string

This commit is contained in:
James Newlands 2018-04-17 23:32:50 +10:00
parent e8f9b31f44
commit 6535126069

View File

@ -30,8 +30,7 @@ class CustomerOrder(models.Model):
# TODO: Should the customer and customer_ref together be unique?
# Date the order was entered into system
created_date = models.DateField(auto_now_add=True, blank=True, help_text="Date order entered "
"in system")
created_date = models.DateField(auto_now_add=True, blank=True, help_text="Date order entered in system")
# Date the order was issued on the paperwork, if provided
issued_date = models.DateField(blank=True, help_text="Date order issued by customer")