summaryrefslogtreecommitdiff
path: root/lorrycontroller/status.py
diff options
context:
space:
mode:
Diffstat (limited to 'lorrycontroller/status.py')
-rw-r--r--lorrycontroller/status.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/lorrycontroller/status.py b/lorrycontroller/status.py
index bd32e6b..5e011d5 100644
--- a/lorrycontroller/status.py
+++ b/lorrycontroller/status.py
@@ -28,15 +28,8 @@ class StatusRenderer(object):
'''Helper class for rendering service status as JSON/HTML'''
def get_status_as_dict(self, statedb, work_directory):
- quotes = [
- "Never get drunk unless you're willing to pay for it - "
- "the next day.",
- "I'm giving her all she's got, Captain!",
- ]
- import random
now = statedb.get_current_time()
status = {
- 'quote': '%s' % random.choice(quotes),
'running_queue': statedb.get_running_queue(),
'timestamp':
time.strftime('%Y-%m-%d %H:%M:%S UTC', time.gmtime(now)),