🐛 fix a bug
This commit is contained in:
parent
1a5e1c39c7
commit
9ec4d877eb
@ -311,9 +311,7 @@ class GPUStat():
|
|||||||
self.load_configure()
|
self.load_configure()
|
||||||
def load_configure(self):
|
def load_configure(self):
|
||||||
configuration_path = os.path.expanduser('~/.gpuutil.conf')
|
configuration_path = os.path.expanduser('~/.gpuutil.conf')
|
||||||
if not os.path.exists(configuration_path):
|
if os.path.exists(configuration_path):
|
||||||
os.system('touch {0}'.format(configuration_path))
|
|
||||||
else:
|
|
||||||
with open(configuration_path, 'r', encoding='utf-8') as f:
|
with open(configuration_path, 'r', encoding='utf-8') as f:
|
||||||
configuration = json.load(f)
|
configuration = json.load(f)
|
||||||
if 'redirect' in configuration:
|
if 'redirect' in configuration:
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user