mirror of
https://github.com/sotam0316/docker-py-revanced.git
synced 2026-04-25 03:48:37 +09:00
🎨 Updated error message (#345)
This commit is contained in:
+2
-2
@@ -9,7 +9,7 @@ from loguru import logger
|
||||
|
||||
from src.config import RevancedConfig
|
||||
from src.downloader.sources import apk_sources
|
||||
from src.exceptions import DownloadError, PatchingFailedError, UnknownError
|
||||
from src.exceptions import BuilderError, DownloadError, PatchingFailedError
|
||||
from src.utils import slugify
|
||||
|
||||
|
||||
@@ -151,7 +151,7 @@ class APP(object):
|
||||
for resource_name, future in futures.items():
|
||||
try:
|
||||
self.resource[resource_name] = future.result()
|
||||
except UnknownError as e:
|
||||
except BuilderError as e:
|
||||
raise PatchingFailedError(e) from e
|
||||
|
||||
@staticmethod
|
||||
|
||||
Reference in New Issue
Block a user