diff options
-rw-r--r-- | src/utils/tiptorrent.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/tiptorrent.py b/src/utils/tiptorrent.py index 252161b..095f17f 100644 --- a/src/utils/tiptorrent.py +++ b/src/utils/tiptorrent.py @@ -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() |