File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
netutils_linux_monitoring Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ def detect_layouts(self, lscpu_output=None):
3636 stdout = self .detect_layout_lscpu (lscpu_output )
3737 rows = [row for row in stdout .strip ().split ('\n ' ) if not row .startswith ('#' )]
3838 layouts = [[any2int (value ) for value in row .split (',' )][2 :4 ] for row in rows ]
39- numa_layout , socket_layout = zip (* layouts )
39+ socket_layout , numa_layout = zip (* layouts )
4040 self .numa_layout = dict (enumerate (numa_layout ))
4141 self .socket_layout = dict (enumerate (socket_layout ))
4242
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ def read(*paths):
1616
1717setuptools .setup (
1818 name = 'netutils-linux' ,
19- version = '2.4.6 ' ,
19+ version = '2.5.0 ' ,
2020 author = 'Oleg Strizhechenko' ,
2121 author_email = 'oleg.strizhechenko@gmail.com' ,
2222 license = 'MIT' ,
You can’t perform that action at this time.
0 commit comments