fix share_usage_data path opening

This commit is contained in:
Akinwale Ariwodola 2020-11-26 00:33:58 +01:00
parent 990eeb4612
commit 4c67bab77a

View file

@ -88,7 +88,7 @@ def start():
sud_state = 'false'
try:
sud_path = f'{private_storage_dir}/sud';
with open(sud_state, 'r') as file:
with open(sud_path, 'r') as file:
sud_state = file.read()
except Exception:
pass