Rushabh Mehta 9 年前
父节点
当前提交
1d7c8db398
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. +1
    -1
      frappe/limits.py

+ 1
- 1
frappe/limits.py 查看文件

@@ -88,7 +88,7 @@ def get_usage_info():
# no limits!
return

limits.space = limits.space * 1024.0 # to MB
limits.space = (limits.space or 0) * 1024.0 # to MB
if not limits.space_usage:
# hack! to show some progress
limits.space_usage = {


正在加载...
取消
保存