From 14b0353ba43af21f247b4e14644eafea26b2e130 Mon Sep 17 00:00:00 2001 From: o Date: Sat, 22 Apr 2017 18:40:21 -0400 Subject: [PATCH] A correction and additional Arnold quotes Correction: True Lies (1994) 'Can you hurry up. My horse is getting tired.' to 'Make it quick because my horse is getting tired.' http://www.imdb.com/title/tt0111503/quotes?item=qt0408883 Additions: Last Action Hero (1993) 'Well, listen to this one: Rubber baby buggy bumpers!' http://www.imdb.com/title/tt0107362/quotes?item=qt1196411 Kindergarten Cop (1990) 'Take your toy back to the carpet!' http://www.imdb.com/title/tt0099938/quotes?item=qt0460013 Kindergarten Cop (1990) 'My name is John Kimble... And I love my car.' http://www.imdb.com/title/tt0099938/quotes?item=qt0460001 Commando (1985) 'I eat Green Berets for breakfast.' http://www.imdb.com/title/tt0088944/quotes?item=qt0402329 Jingle All the Way (1996) 'Put that cookie down. NOW!' http://www.imdb.com/title/tt0116705/quotes?item=qt0266218 --- plexpy/webserve.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/plexpy/webserve.py b/plexpy/webserve.py index 9cc79e9f..c180244a 100644 --- a/plexpy/webserve.py +++ b/plexpy/webserve.py @@ -4312,13 +4312,18 @@ class WebInterface(object): 'Come with me if you want to live.', 'Who is your daddy and what does he do?', 'Oh, cookies! I can\'t wait to toss them.', - 'Can you hurry up. My horse is getting tired.', + 'Make it quick because my horse is getting tired.', 'What killed the dinosaurs? The Ice Age!', 'That\'s for sleeping with my wife!', 'Remember when I said I\'d kill you last... I lied!', 'You want to be a farmer? Here\'s a couple of acres', 'Now, this is the plan. Get your ass to Mars.', - 'I just had a terrible thought... What if this is a dream?' + 'I just had a terrible thought... What if this is a dream?', + 'Well, listen to this one: Rubber baby buggy bumpers!', + 'Take your toy back to the carpet!', + 'My name is John Kimble... And I love my car.', + 'I eat Green Berets for breakfast.', + 'Put that cookie down! NOW!' ] random_number = randint(0, len(quote_list) - 1)