Skip to content

Commit 8fb9373

Browse files
committed
【完善】:输出方式兼容 Python3
1 parent 28358a1 commit 8fb9373

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmds/cmd_package.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -623,7 +623,7 @@ def error_packages_handle(error_packages_list, read_back_pkgs_json, pkgs_fn):
623623
if len(error_packages_list):
624624
print("\n==============================> Packages list to download : \n")
625625
for pkg in error_packages_list:
626-
print pkg['name'].encode("utf-8"), pkg['ver'].encode("utf-8")
626+
print("Packages name : %s, Ver : %s"%(pkg['name'].encode("utf-8"), pkg['ver'].encode("utf-8")))
627627
print("\nThe packages in the list above are accidentally deleted, env will redownload them.")
628628
print("Warning: Packages should be deleted in <menuconfig> command.\n")
629629

0 commit comments

Comments
 (0)