diff --git a/temperature.py b/temperature.py index e71d026..db7eae1 100755 --- a/temperature.py +++ b/temperature.py @@ -64,8 +64,8 @@ for key in sensors: updated = json_data.get(i)['state']['lastupdated'][-8:] temperature = round((json_data.get(i)['state']['temperature'] / 100), 1) if verbose: - print (f"{name:<30s} - {temperature}C (updated: {updated} UTC)") + print (f"{name:<32s} - {temperature}C (updated: {updated} UTC)") elif debug: - print (f"{name:<30s} - {temperature}C (updated: {updated} UTC - sensor: {i})") + print (f"{name:<32s} - {temperature}C (updated: {updated} UTC - sensor: {i})") else: - print (f"{name:<30s} - {temperature}C") + print (f"{name:<32s} - {temperature}C")