1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-11-24 17:28:08 +00:00

Show correct free disk space value.

This commit is contained in:
grossmj 2018-06-06 14:59:44 +07:00
parent 31a268e756
commit 19c5ff8521

View File

@ -90,9 +90,9 @@ class ProjectManager:
return
# send a warning if used disk space is >= 90%
if used_disk_space >= 90:
message = 'Only {}% or less of disk space detected in "{}" on "{}"'.format(used_disk_space,
project.path,
platform.node())
message = 'Only {}% or less of free disk space detected in "{}" on "{}"'.format(100 - used_disk_space,
project.path,
platform.node())
log.warning(message)
project.emit("log.warning", {"message": message})