summaryrefslogtreecommitdiffstats
path: root/abs/core/LinHES-system/myth_status.py
diff options
context:
space:
mode:
authorBritney Fransen <brfransen@gmail.com>2013-11-14 16:56:05 (GMT)
committerBritney Fransen <brfransen@gmail.com>2013-11-14 16:56:05 (GMT)
commit202c1c45cf8dcd9ae2189c073d555a95d09260d1 (patch)
tree10c172718e0c3b2fd0d85b34dceff762dd30da64 /abs/core/LinHES-system/myth_status.py
parent806fc99ed3a2c281846aa82120244e0ce593c48f (diff)
downloadlinhes_pkgbuild-202c1c45cf8dcd9ae2189c073d555a95d09260d1.zip
linhes_pkgbuild-202c1c45cf8dcd9ae2189c073d555a95d09260d1.tar.gz
linhes_pkgbuild-202c1c45cf8dcd9ae2189c073d555a95d09260d1.tar.bz2
LinHES-system: myth_status.py: remove padding for upcoming recordings
Diffstat (limited to 'abs/core/LinHES-system/myth_status.py')
-rw-r--r--abs/core/LinHES-system/myth_status.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/abs/core/LinHES-system/myth_status.py b/abs/core/LinHES-system/myth_status.py
index 5515d1e..f0e41f3 100644
--- a/abs/core/LinHES-system/myth_status.py
+++ b/abs/core/LinHES-system/myth_status.py
@@ -73,7 +73,7 @@ for i in a:
print " Tuner %s (%s) on %s : %s " %(id, type, hostname, "Tuner Error")
print ""
-print "Upcoming Recordings (Next %s scheduled):" %(num_upcoming)
+print "Upcoming Recordings (Next %s Scheduled):" %(num_upcoming)
print "----------------------------------------"
a=be.getUpcomingRecordings()
r=0
@@ -87,14 +87,14 @@ for i in a:
start_time=re.split("[-+]\d\d:\d\d",str(i.starttime))[0]
start_time_struct=datetime.datetime.strptime(start_time, "%Y-%m-%d %H:%M:%S")
start_time_out=start_time_struct.strftime("%a %b %d %I:%M%p")
- print " %s - %s - %-50s " %(start_time_out,i.hostname, title_chan)
+ print " %s - %s - %s" %(start_time_out,i.hostname, title_chan)
diff = start_time_struct - now
if diff < next_start_diff :
next_start_diff = diff
print ""
-print "Conflicted Recordings:"
+print "Recording Conflicts:"
print "----------------------"
a=be.getConflictedRecordings()
c=0