Skip to content

Commit

Permalink
fix swap on linux, bump to 0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
okuvshynov committed Mar 30, 2024
1 parent 7f8d127 commit d734d89
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cubestat/cubestat.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ def read_swap(self):
for l in lines:
if l.startswith("Swap:"):
parts = l.split()
return float(parts[2])
return float(parts[2])
except:
return None

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name='cubestat',
version='0.2.0',
version='0.2.1',
author='Oleksandr Kuvshynov',
author_email='[email protected]',
description='Horizon chart in terminal for system monitoring',
Expand Down

0 comments on commit d734d89

Please sign in to comment.