You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
self.debug_string+=f"\nDEBUG: Free disk space on \"{path_of_interest}\"is {self.free_disk_space_gb} GB, minimum required amount is {minimum_free_disk_space}."
self.report_string+=f"\n{self.get_report_indentation()} Free disk space is {free_disk_space} GB, minimum amount is {minimum_free_disk_space}."
84
+
self.report_string=self.report_header
85
+
self.report_string+=f"\n{self.report_indentation} Free disk space on \"{path_of_interest}\"is {self.free_disk_space_gb} GB, minimum amount is {minimum_free_disk_space}."
self.debug_string+=f"\nDEBUG: Total disk space is {total_disk_space} GB, minimum required amount is {minimum_total_disk_space}."
90
+
self.debug_string+=f"\nDEBUG: Total disk space on \"{path_of_interest}\"is {total_disk_space} GB, minimum required amount is {minimum_total_disk_space}."
92
91
iftotal_disk_space<minimum_total_disk_space:
93
92
self.this_computer_has_sufficient_resources=False
94
93
iflen(self.report_string) ==0:
95
-
self.report_string=self.get_report_header()
96
-
self.report_string+=f"\n{self.get_report_indentation()} Total disk space is {total_disk_space} GB, minimum amount is {minimum_total_disk_space}."
94
+
self.report_string=self.report_header
95
+
self.report_string+=f"\n{self.report_indentation} Total disk space on \"{path_of_interest}\" is {total_disk_space} GB, minimum amount is {minimum_total_disk_space}."
0 commit comments