Skip to content

Commit

Permalink
Fix bug - getting CPU info
Browse files Browse the repository at this point in the history
  • Loading branch information
mythmgn authored Jul 3, 2018
1 parent 4e85af1 commit 145dd29
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cup/res/linux.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ def get_kernel_version():
"""
versions = os.uname()[2]
# version = versions[0: versions.find('_')]
return tuple([info for info in version.split('.')])
return tuple([info for info in versions.split('.')])


@cup.decorators.needlinux
Expand Down

0 comments on commit 145dd29

Please sign in to comment.