[issue1825] msilib.add_data() takes exactly three parameters

2008-02-23 Thread Georg Brandl
Georg Brandl added the comment: Fixed in r61025. -- nosy: +georg.brandl resolution: -> fixed status: open -> closed __ Tracker <[EMAIL PROTECTED]> __ _

[issue1825] msilib.add_data() takes exactly three parameters

2008-01-20 Thread Christian Heimes
Changes by Christian Heimes: -- keywords: +easy, patch priority: -> low __ Tracker <[EMAIL PROTECTED]> __ ___ Python-bugs-list mailing list Un

[issue1825] msilib.add_data() takes exactly three parameters

2008-01-14 Thread Martin v. Löwis
Martin v. Löwis added the comment: Thanks for pointing that out. The table argument must be one of the predefined tables in the MSI schema, e.g. Feature, File, Component, Dialog, Control, InstallExecuteSequence, etc. The values are the values added to that table -- nosy: +loewis ___

[issue1825] msilib.add_data() takes exactly three parameters

2008-01-14 Thread Jim Wilson
New submission from Jim Wilson: At: http://docs.python.org/lib/module-msilib.html, add_data(...) is documented to take two parameters, but invoking it with two draws a complaint that three are needed. Examination of bdist_msi.py leads me to believe the missing (middle) parameter is "table", but