Jay-Goo / ProtectedApkResignerForWalle

[Walle WiKi官方推荐]一步解决应用加固导致Walle渠道信息失效的自动化脚本工具,自动生成渠道包
Apache License 2.0
568 stars 113 forks source link

win10 执行py文件报错 #14

Closed lu-xu closed 6 years ago

lu-xu commented 6 years ago

$ python ApkResigner.py File "ApkResigner.py", line 135 print "\n =============================TASK FINISHED=================================== \n" ^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print("\n =============================TASK FINISHED=================================== \n")?

给print加上括号就好了

print( "\n =============================TASK FINISHED=================================== \n") print( "\n↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓ Please check channels in the path ↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓\n") print ("\n"+channelsOutputFilePath+"\n") print ("\n =============================TASK FINISHED=================================== \n")

JinJieGu commented 6 years ago

恩,应该和python版本有关,下个future我会做一个兼容进去,也欢迎提PR

lu-xu commented 6 years ago

建议在readme里写清楚python版本。毕竟2.x和3.x有挺大不同的,我用的3.6.5