Some beauty fixes

This commit is contained in:
Reik Kaps 2020-02-09 18:43:13 +01:00
parent 1e47040b75
commit 9215b20a13
1 changed files with 2 additions and 2 deletions

View File

@ -49,10 +49,10 @@ def status(json, verbose):
pass
if json['state']['open'] is False:
print('🧘 closed'.format(str(json['space'])))
print('{} is closed'.format(str(json['space'])))
return False
print('🌞 open'.format(str(json['space'])))
print('{} is open'.format(str(json['space'])))
return True