diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2011-10-19 07:58:56 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2011-10-19 07:58:56 (GMT) |
commit | e130a52d8a60229f53c8bc2ea7a1f51ee592bbd7 (patch) | |
tree | b7f128d5f626c78d57d53812a5953c6eb56cca72 /Lib/msilib | |
parent | a5a9a9c3696af0a4a0df74618e63a4d47a62e00f (diff) | |
download | cpython-e130a52d8a60229f53c8bc2ea7a1f51ee592bbd7.zip cpython-e130a52d8a60229f53c8bc2ea7a1f51ee592bbd7.tar.gz cpython-e130a52d8a60229f53c8bc2ea7a1f51ee592bbd7.tar.bz2 |
Remove duplication.
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 379f1ef..a9e1679 100644 --- a/Lib/msilib/schema.py +++ b/Lib/msilib/schema.py @@ -958,7 +958,7 @@ _Validation_records = [ ('ServiceInstall','StartType','N',0,4,None, None, None, None, 'Type of the service',), ('Shortcut','Name','N',None, None, None, None, 'Filename',None, 'The name of the shortcut to be created.',), ('Shortcut','Description','Y',None, None, None, None, 'Text',None, 'The description for the shortcut.',), -('Shortcut','Component_','N',None, None, 'Component',1,'Identifier',None, 'Foreign key into the Component table denoting the component whose selection gates the the shortcut creation/deletion.',), +('Shortcut','Component_','N',None, None, 'Component',1,'Identifier',None, 'Foreign key into the Component table denoting the component whose selection gates the shortcut creation/deletion.',), ('Shortcut','Icon_','Y',None, None, 'Icon',1,'Identifier',None, 'Foreign key into the File table denoting the external icon file for the shortcut.',), ('Shortcut','IconIndex','Y',-32767,32767,None, None, None, None, 'The icon index for the shortcut.',), ('Shortcut','Directory_','N',None, None, 'Directory',1,'Identifier',None, 'Foreign key into the Directory table denoting the directory where the shortcut file is created.',), |