Remove the prefix char in output
This commit is contained in:
parent
591ac112dd
commit
16a73b5949
|
@ -55,10 +55,10 @@ def status(json_data, verbose):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
if json_data['state']['open'] is False:
|
if json_data['state']['open'] is False:
|
||||||
print(' {} is closed'.format(str(json_data['space'])))
|
print('{} is closed'.format(str(json_data['space'])))
|
||||||
return False
|
return False
|
||||||
|
|
||||||
print(' {} is open'.format(str(json_data['space'])))
|
print('{} is open'.format(str(json_data['space'])))
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue