Free space comment

This commit is contained in:
Thomas Farstrike
2026-02-21 09:05:29 +01:00
parent 1ffd59155e
commit 0d4344f45b
+1 -1
View File
@@ -12,7 +12,7 @@ print(f"{sys.version=}")
print(f"{sys.implementation=}")
print("Check free space on root filesystem:")
print("Free space on root filesystem:")
stat = os.statvfs("/")
total_space = stat[0] * stat[2]
free_space = stat[0] * stat[3]