Skip to content

Commit dfd835e

Browse files
regenerArkshine
authored andcommitted
String changes for missing path exception messages (alliedmodders#718)
Resolves alliedmodders#652
1 parent 295d09d commit dfd835e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

AMBuildScript

+2-2
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ class AMXXConfig(object):
7171
if len(hlsdk_path):
7272
self.hlsdk_path = os.path.join(builder.originalCwd, hlsdk_path)
7373
if not os.path.exists(self.hlsdk_path):
74-
raise Exception('Metamod path does not exist: {0}'.format(hlsdk_path))
74+
raise Exception('HLSDK path does not exist: {0}'.format(hlsdk_path))
7575
else:
7676
try_paths = [
7777
os.path.join(builder.sourcePath, '..', 'hlsdk'),
@@ -94,7 +94,7 @@ class AMXXConfig(object):
9494
if len(mysql_path):
9595
self.mysql_path = os.path.join(builder.originalCwd, mysql_path)
9696
if not os.path.exists(self.mysql_path):
97-
raise Exception('Metamod path does not exist: {0}'.format(mysql_path))
97+
raise Exception('MySQL path does not exist: {0}'.format(mysql_path))
9898
else:
9999
try_paths = [
100100
os.path.join(builder.sourcePath, '..', 'mysql-5.5'),

0 commit comments

Comments
 (0)