summaryrefslogtreecommitdiff
path: root/lorrycontroller/showjob.py
diff options
context:
space:
mode:
Diffstat (limited to 'lorrycontroller/showjob.py')
-rw-r--r--lorrycontroller/showjob.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lorrycontroller/showjob.py b/lorrycontroller/showjob.py
index 6f73ed6..951ad22 100644
--- a/lorrycontroller/showjob.py
+++ b/lorrycontroller/showjob.py
@@ -42,7 +42,7 @@ class JobShower(object):
'disk_usage_nice': self.format_bytesize(disk_usage),
'output': output,
'job_started': self.format_time(started),
- 'job_ended': self.format_time(ended),
+ 'job_ended': '' if ended is None else self.format_time(ended),
'timestamp': self.format_time(now),
}