Title | Bugzilla integration doesn't work with old Python versions |
Status | closed |
Priority | critical |
Assigned user | Nick Barnes |
Organization | Ravenbrook |
Description | The Bugzilla integration fails on old Python versions such as 1.5. (We don't officially support these versions, but in this case the change is so small it is worth making.) Bugzilla.py has a function convert_type() which takes three arguments. The third is a tuple. The existing code pulls the tuple apart in the argument list. That doesn't work in the Python implementation of one beta tester. |
Analysis | Replace this: def convert_type(self, table, (name, sql_type, null_p, index, default, attrs)): With this: def convert_type(self, table, tuple): (name, sql_type, null_p, index, default, attrs) = tuple |
How found | customer |
Evidence | <http://info.ravenbrook.com/mail/2001/03/01/12-55-05/0.txt > |
Observed in | 1.0.1 |
Introduced in | 0.5.0 |
Created by | Nick Barnes |
Created on | 2001-03-01 13:24:37 |
Last modified by | Gareth Rees |
Last modified on | 2010-10-07 12:06:52 |
History | 2001-03-01 NB Created. |
Change | Effect | Date | User | Description |
---|---|---|---|---|
9249 | closed | 2001-03-01 13:30:55 | Nick Barnes | Fix for job000238. |