From 4dbef6304ccb10170945f49de7af2c7cac002fc4 Mon Sep 17 00:00:00 2001 From: Lauriethefish Date: Sat, 17 Apr 2021 18:26:03 +0100 Subject: [PATCH] Fix typo --- src/ModsManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ModsManager.cs b/src/ModsManager.cs index fcdec72..bb10982 100644 --- a/src/ModsManager.cs +++ b/src/ModsManager.cs @@ -150,7 +150,7 @@ private async Task InstallDependency(DependencyInfo dependency, List ins { logger.Warning($"Dependency with ID {dependency.Id} is already installed but with an incorrect version ({existing.Version} does not intersect {dependency.Version}). QuestPatcher will attempt to upgrade the dependency"); } else { - throw new ModInstallException($"Dependency with ID {dependency.Id} is already installed but with an incorrect version({existing.Version} does not intersect {dependency.Version}). Upgrading was not possible as there was no download link provided"); + throw new ModInstallException($"Dependency with ID {dependency.Id} is already installed but with an incorrect version ({existing.Version} does not intersect {dependency.Version}). Upgrading was not possible as there was no download link provided"); } } else if(!hasDownloadLink) {