fix(core): adjust syntax for Python > 2

pull/277/head
Ludovic Marcotte 2020-05-15 12:44:25 -04:00
parent 07c06db69d
commit 798ad1502c
1 changed files with 1 additions and 1 deletions

View File

@ -106,7 +106,7 @@ def FindHFile(args, filename):
found = full_filename
if found is None:
raise Exception, "'%s' not found in include dirs" % filename
raise Exception("'%s' not found in include dirs" % filename)
return found