diff options
author | Mohamad Mansour <66031317+mohamadmansourX@users.noreply.github.com> | 2021-09-21 23:09:00 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-21 23:09:00 (GMT) |
commit | 8f943ca25732d548cf9f0b0393ba8d582fb93e29 (patch) | |
tree | 95cffeb379a4ded4c1c753bdaf29ea79916e04d2 /Lib/msilib | |
parent | a0073471002bed0169fb806703e26880bbcceb73 (diff) | |
download | cpython-8f943ca25732d548cf9f0b0393ba8d582fb93e29.zip cpython-8f943ca25732d548cf9f0b0393ba8d582fb93e29.tar.gz cpython-8f943ca25732d548cf9f0b0393ba8d582fb93e29.tar.bz2 |
[codemod] Fix non-matching bracket pairs (GH-28473)
Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Co-authored-by: Ćukasz Langa <lukasz@langa.pl>
Diffstat (limited to 'Lib/msilib')
-rw-r--r-- | Lib/msilib/schema.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/msilib/schema.py b/Lib/msilib/schema.py index eeb3ecd..9f5745c 100644 --- a/Lib/msilib/schema.py +++ b/Lib/msilib/schema.py @@ -664,7 +664,7 @@ _Validation_records = [ ('Class','Component_','N',None, None, 'Component',1,'Identifier',None, 'Required foreign key into the Component Table, specifying the component for which to return a path when called through LocateComponent.',), ('Class','Context','N',None, None, None, None, 'Identifier',None, 'The numeric server context for this server. CLSCTX_xxxx',), ('Class','DefInprocHandler','Y',None, None, None, None, 'Filename','1;2;3','Optional default inproc handler. Only optionally provided if Context=CLSCTX_LOCAL_SERVER. Typically "ole32.dll" or "mapi32.dll"',), -('Class','FileTypeMask','Y',None, None, None, None, 'Text',None, 'Optional string containing information for the HKCRthis CLSID) key. If multiple patterns exist, they must be delimited by a semicolon, and numeric subkeys will be generated: 0,1,2...',), +('Class','FileTypeMask','Y',None, None, None, None, 'Text',None, 'Optional string containing information for the HKCRthis CLSID key. If multiple patterns exist, they must be delimited by a semicolon, and numeric subkeys will be generated: 0,1,2...',), ('Class','Icon_','Y',None, None, 'Icon',1,'Identifier',None, 'Optional foreign key into the Icon Table, specifying the icon file associated with this CLSID. Will be written under the DefaultIcon key.',), ('Class','IconIndex','Y',-32767,32767,None, None, None, None, 'Optional icon index.',), ('Class','ProgId_Default','Y',None, None, 'ProgId',1,'Text',None, 'Optional ProgId associated with this CLSID.',), |