diff options
author | Fred Drake <fdrake@acm.org> | 2005-10-28 14:39:47 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2005-10-28 14:39:47 (GMT) |
commit | db390c1ad8e2c8049e1d0d3828a979c75d1621b9 (patch) | |
tree | 110d3485f390abc738015ff6eb071a310febe856 /Tools/msi | |
parent | f3396542806e9c6d1dfafda5d1e53296d3d1af09 (diff) | |
download | cpython-db390c1ad8e2c8049e1d0d3828a979c75d1621b9.zip cpython-db390c1ad8e2c8049e1d0d3828a979c75d1621b9.tar.gz cpython-db390c1ad8e2c8049e1d0d3828a979c75d1621b9.tar.bz2 |
fix typos, mostly in comments
Diffstat (limited to 'Tools/msi')
-rw-r--r-- | Tools/msi/uisample.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Tools/msi/uisample.py b/Tools/msi/uisample.py index d66c3cd..2bdf59e 100644 --- a/Tools/msi/uisample.py +++ b/Tools/msi/uisample.py @@ -1,3 +1,4 @@ + import msilib,os;dirname=os.path.dirname(__file__) AdminExecuteSequence = [ (u'InstallValidate', None, 1400), @@ -1393,7 +1394,7 @@ Error = [ (1932, u'The Windows Installer service cannot update the protected Windows file [2]. {{Package version: [3], OS Protected version: [4], SFP Error: [5]}}'), (1933, u'The Windows Installer service cannot update one or more protected Windows files. {{SFP Error: [2]. List of protected files:\\r\\n[3]}}'), (1934, u'User installations are disabled via policy on the machine.'), -(1935, u'An error occured during the installation of assembly component [2]. HRESULT: [3]. {{assembly interface: [4], function: [5], assembly name: [6]}}'), +(1935, u'An error occurred during the installation of assembly component [2]. HRESULT: [3]. {{assembly interface: [4], function: [5], assembly name: [6]}}'), ] tables=['AdminExecuteSequence', 'AdminUISequence', 'AdvtExecuteSequence', 'BBControl', 'Billboard', 'Binary', 'CheckBox', 'Property', 'ComboBox', 'Control', 'ListBox', 'ActionText', 'ControlCondition', 'ControlEvent', 'Dialog', 'EventMapping', 'InstallExecuteSequence', 'InstallUISequence', 'ListView', 'RadioButton', 'TextStyle', 'UIText', '_Validation', 'Error'] |