From c6e9935a40b31d70d2e666be785956fd57adca84 Mon Sep 17 00:00:00 2001 From: Vollinger0 <148711063+Vollinger0@users.noreply.github.com> Date: Sat, 22 Jun 2024 22:51:34 +0200 Subject: [PATCH] fixed phrasing --- src/esm/EsmSharedDataServer.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/esm/EsmSharedDataServer.py b/src/esm/EsmSharedDataServer.py index 1d925a6..3940345 100644 --- a/src/esm/EsmSharedDataServer.py +++ b/src/esm/EsmSharedDataServer.py @@ -90,7 +90,7 @@ def startServer(self, zipFiles: List[ZipFile]): # check if the configuration of the dedicated yaml (we will not make any changes to it) has the auto zip url configured properly self.checkDedicatedYamlHasAutoZipUrl(sharedDataUrl) - log.warn(f"The dedicated yaml has been updated to point to the shared data tool, make sure to restart the server to make it take effect!") + log.warn(f"The dedicated yaml has been updated to point to the shared data tool, make sure to restart the server for it to take effect!") log.info(f"Starting download server for {len(zipFiles)} zip files (excluding default assets).") def NoOp(*args): @@ -106,7 +106,8 @@ def NoOp(*args): if self.config.downloadtool.useSharedDataURLFeature: self.configService.rollbackDedicatedYaml() - log.warn(f"The dedicated yaml has been rolled back to its original state, make sure to restart the server for it take effect!") + log.warn(f"The dedicated yaml has been rolled back to its original state, make sure to restart the server for it to take effect!") + def prepareZipFiles(self) -> List[ZipFile]: """