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 968c2b3 commit ea7ac2cCopy full SHA for ea7ac2c
spd-eeprom.py
@@ -26,7 +26,7 @@
26
try:
27
import fcntl
28
except ImportError:
29
- print("Operating system not supported.")
+ print("This operating system is not supported.")
30
exit(1)
31
32
# To determine what functionality is present
@@ -237,7 +237,7 @@ def smbus_probe(dimm_slot = None):
237
if smbus_idx.isdigit():
238
smbus_idx = int(smbus_idx)
239
else:
240
- print("SMBus adapter not found.")
+ print("No SMBus adapter found.")
241
sys.exit(1)
242
243
if dimm_slot == None:
@@ -270,7 +270,7 @@ def smbus_probe(dimm_slot = None):
270
271
def main():
272
if os.getuid():
273
- print("Please run as root.")
+ print("Please run this script as root.")
274
275
276
0 commit comments