فهرست منبع

makepanda: fix error concatenating platform

[skip ci]
rdb 7 سال پیش
والد
کامیت
eed0834ccb
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      makepanda/makepanda.py

+ 1 - 1
makepanda/makepanda.py

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