From 6e9c8916c095f806280b789aaa9f92902d42b0ee Mon Sep 17 00:00:00 2001 From: DrTrills Date: Wed, 23 Mar 2016 18:27:34 -0400 Subject: [PATCH] Update quotes.py Added a fun fact to change it up --- erpnext/setup/doctype/email_digest/quotes.py | 1 + 1 file changed, 1 insertion(+) diff --git a/erpnext/setup/doctype/email_digest/quotes.py b/erpnext/setup/doctype/email_digest/quotes.py index 4b996d9675..95afe974b2 100644 --- a/erpnext/setup/doctype/email_digest/quotes.py +++ b/erpnext/setup/doctype/email_digest/quotes.py @@ -28,6 +28,7 @@ def get_random_quote(): ("A small body of determined spirits fired by an unquenchable faith in their mission can alter the course of history.", "Mahatma Gandhi"), ("If two wrongs don't make a right, try three.", "Laurence J. Peter"), ("Inspiration exists, but it has to find you working.", "Pablo Picasso"), + ("The world’s first speeding ticket was given to a man going 4 times the speed limit! Walter Arnold was traveling at a breakneck 8 miles an hour in a 2mph zone, and was caught by a policeman on bicycle and fined one shilling!"), ] return random.choice(quotes)