Skip to content

Commit

Permalink
Message update to show "Available RAM" rather than "Used RAM" (#579)
Browse files Browse the repository at this point in the history
  • Loading branch information
cjohnson-phys authored Jun 18, 2024
1 parent 11c4a1b commit 8e2b41a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/system_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ def print_system_info():
if total_ram is None or available_ram is None:
print("RAM information not found...")
else:
print(f"Used RAM: {available_ram}/{total_ram} MB")
print(f"Available RAM: {available_ram}/{total_ram} MB")


if __name__ == "__main__":
Expand Down

0 comments on commit 8e2b41a

Please sign in to comment.