summaryrefslogtreecommitdiffstats
path: root/Lib/uuid.py
diff options
context:
space:
mode:
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: