summaryrefslogtreecommitdiffstats
path: root/Lib/uuid.py
diff options
context:
space:
mode:
authorXie Yanbo <xieyanbo@gmail.com>2024-08-07 06:39:16 (GMT)
committerGitHub <noreply@github.com>2024-08-07 06:39:16 (GMT)
commitb6c80e21c78ea86fb12b331f69881a586ed487e0 (patch)
treef3ccb152fa27be8da9e6fb84217e5c657d541c18 /Lib/uuid.py
parent98dba73010e807e613b9400e8c4b411302498728 (diff)
downloadcpython-b6c80e21c78ea86fb12b331f69881a586ed487e0.zip
cpython-b6c80e21c78ea86fb12b331f69881a586ed487e0.tar.gz
cpython-b6c80e21c78ea86fb12b331f69881a586ed487e0.tar.bz2
Fix typos in comments and docstring (#122720)
Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
Diffstat (limited to 'Lib/uuid.py')
-rw-r--r--Lib/uuid.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/uuid.py b/Lib/uuid.py
index c286eac..4d4f06c 100644
--- a/Lib/uuid.py
+++ b/Lib/uuid.py
@@ -374,7 +374,7 @@ def _get_command_stdout(command, *args):
# for are actually localized, but in theory some system could do so.)
env = dict(os.environ)
env['LC_ALL'] = 'C'
- # Empty strings will be quoted by popen so we should just ommit it
+ # Empty strings will be quoted by popen so we should just omit it
if args != ('',):
command = (executable, *args)
else: