mirror of https://git.48k.eu/ogclient
tiptorrent: missing f-string in error
tip_client_get() needs f-string to display errormaster
parent
cf9e1c96fd
commit
e003ff6d8c
|
@ -120,7 +120,7 @@ def tip_client_get(tip_addr, image_name):
|
|||
cwd=OG_CACHE_IMAGE_PATH)
|
||||
proc.communicate()
|
||||
except OSError as e:
|
||||
raise OgError('Unexpected error running tiptorrent subprocess: {e}') from e
|
||||
raise OgError(f'Unexpected error running tiptorrent subprocess: {e}') from e
|
||||
finally:
|
||||
logfile.close()
|
||||
|
||||
|
|
Loading…
Reference in New Issue