makepanda: fix error concatenating platform

[skip ci]
This commit is contained in:
rdb 2019-01-06 09:53:35 +01:00
parent 7132d09e7e
commit eed0834ccb

View File

@ -473,7 +473,7 @@ else:
target_arch = GetTargetArch()
if target_arch == 'amd64':
target_arch = 'x86_64'
PLATFORM = '{0}-{1}' % (target, target_arch)
PLATFORM = '{0}-{1}'.format(target, target_arch)
print("Platform: %s" % PLATFORM)