总下载大小改成字节

This commit is contained in:
wangsong 2021-09-26 10:33:10 +08:00
parent e6b8739500
commit bf2f976cf0
2 changed files with 2 additions and 2 deletions

View File

@ -523,7 +523,7 @@ class UpdateList():
except Exception as e:
logging.info("this package(%s) not in list and error mes:%s",pkg_name,e)
pass
pkgs_info_json.update({"total_size":humanize_size(total_size)})
pkgs_info_json.update({"total_size":total_size})
return pkgs_info_json
#检查包是否在cache中 返回新得列表

View File

@ -242,7 +242,7 @@ class UpdateManager():
#FIXME: 5、 待开发功能 根据监测存在配置文件 不存在进行重新安装包 再检测还是未存在的话 就判断此次没有可升级的
#FIXME: 6、 出错后未进行处理 更新important.list 文件错误的话
# self.dbusController._on_update_important_list()
self.dbusController._on_update_important_list()
try:
_success,header,desc = self.update_list.update(self.cache)