From d49c72cf8bf3c304b31dc48652f13534ca53dd00 Mon Sep 17 00:00:00 2001 From: Nicholas Hastings Date: Tue, 31 Mar 2015 17:39:04 -0400 Subject: [PATCH] Fix typo in core AMBuilder file triggering exception when triggering exception. --- core/AMBuilder | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/AMBuilder b/core/AMBuilder index daf632e6..4875903f 100644 --- a/core/AMBuilder +++ b/core/AMBuilder @@ -79,7 +79,7 @@ for sdk_name in SM.sdks: if msvc_ver == 1800: vs_year = '2013' else: - raise Exception('Cannot find libprotobuf for MSVC version "' + compiler.version + '"') + raise Exception('Cannot find libprotobuf for MSVC version "' + str(compiler.version) + '"') if 'DEBUG' in compiler.defines: lib_path = os.path.join(sdk.path, 'lib', 'win32', 'debug', 'vs' + vs_year, 'libprotobuf.lib')