From dfd835eba5d648ab93b47f98611ae14c83f8362d Mon Sep 17 00:00:00 2001 From: regener Date: Tue, 14 May 2019 00:37:49 +0200 Subject: [PATCH] String changes for missing path exception messages (#718) Resolves #652 --- AMBuildScript | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/AMBuildScript b/AMBuildScript index df3a2ab6..ecfbde0f 100644 --- a/AMBuildScript +++ b/AMBuildScript @@ -71,7 +71,7 @@ class AMXXConfig(object): if len(hlsdk_path): self.hlsdk_path = os.path.join(builder.originalCwd, hlsdk_path) if not os.path.exists(self.hlsdk_path): - raise Exception('Metamod path does not exist: {0}'.format(hlsdk_path)) + raise Exception('HLSDK path does not exist: {0}'.format(hlsdk_path)) else: try_paths = [ os.path.join(builder.sourcePath, '..', 'hlsdk'), @@ -94,7 +94,7 @@ class AMXXConfig(object): if len(mysql_path): self.mysql_path = os.path.join(builder.originalCwd, mysql_path) if not os.path.exists(self.mysql_path): - raise Exception('Metamod path does not exist: {0}'.format(mysql_path)) + raise Exception('MySQL path does not exist: {0}'.format(mysql_path)) else: try_paths = [ os.path.join(builder.sourcePath, '..', 'mysql-5.5'),