Add spacer line before Temps

This commit is contained in:
2Shirt 2018-12-24 21:19:56 -07:00
parent 8d6b29be53
commit b3f2a86f46
Signed by: 2Shirt
GPG key ID: 152FAC923B0E132C

View file

@ -89,6 +89,8 @@ class osTicket():
_sensor = r2.group(1) _sensor = r2.group(1)
_spacer = pad_with_dots(r2.group(2)) _spacer = pad_with_dots(r2.group(2))
line = '{}{} {}'.format(_sensor, _spacer, _temps) line = '{}{} {}'.format(_sensor, _spacer, _temps)
if line == 'Temps':
out_report.append(' ')
elif name == 'NVMe / SMART': elif name == 'NVMe / SMART':
r = REGEX_NVME_SMART_ATTRIBUTES.match(line) r = REGEX_NVME_SMART_ATTRIBUTES.match(line)
if r: if r: