summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lorrycontroller/status.py7
-rw-r--r--templates/status.tpl2
2 files changed, 0 insertions, 9 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)),
diff --git a/templates/status.tpl b/templates/status.tpl
index 80f1ff7..e583883 100644
--- a/templates/status.tpl
+++ b/templates/status.tpl
@@ -107,8 +107,6 @@
<hr />
- <p>Scotty says: {{quote}}</p>
-
<p>Updated: {{timestamp}}</p>
</body>