Rushabh Mehta 9 anni fa
parent
commit
1d7c8db398
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. +1
    -1
      frappe/limits.py

+ 1
- 1
frappe/limits.py Vedi File

@@ -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 = {


Caricamento…
Annulla
Salva