We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1985e0c commit 5d6bb98Copy full SHA for 5d6bb98
machineid/__init__.py
@@ -91,8 +91,7 @@ def id(winregistry: bool = True) -> str:
91
if not id:
92
out = __exec__('wmic csproduct get uuid')
93
if out is not None and out.count('\n')>1:
94
- id = out.split('\n')[2].strip()
95
-
+ id = out.split('\n')[2].strip()
96
elif platform.startswith('linux'):
97
id = __read__('/var/lib/dbus/machine-id')
98
0 commit comments