Skip to content

Commit

Permalink
Fix typo in core AMBuilder file triggering exception when triggering …
Browse files Browse the repository at this point in the history
…exception.
  • Loading branch information
psychonic committed Mar 31, 2015
1 parent c11036a commit d49c72c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/AMBuilder
Expand Up @@ -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')
Expand Down

0 comments on commit d49c72c

Please sign in to comment.