typo fix (#627)
This commit is contained in:
parent
a60ad1590c
commit
0f8a0669b4
|
@ -359,7 +359,7 @@ of ``PythonCore`` is omitted but shown in a later example::
|
||||||
(winreg.HKEY_LOCAL_MACHINE, r'Software\Python', winreg.KEY_WOW64_32KEY),
|
(winreg.HKEY_LOCAL_MACHINE, r'Software\Python', winreg.KEY_WOW64_32KEY),
|
||||||
]:
|
]:
|
||||||
with winreg.OpenKeyEx(hive, key, access=winreg.KEY_READ | flags) as root_key:
|
with winreg.OpenKeyEx(hive, key, access=winreg.KEY_READ | flags) as root_key:
|
||||||
for comany in enum_keys(root_key):
|
for company in enum_keys(root_key):
|
||||||
if company == 'PyLauncher':
|
if company == 'PyLauncher':
|
||||||
continue
|
continue
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue