Dan Wilson

Results 6 comments of Dan Wilson

I've been running this branch for the last week or so without any issues, but it's a bit hacky to push upstream: https://github.com/spookylukey/django-paypal/compare/master...djw:return-query-changes Given that `payment_date` is now arriving in...

Apologies for the delay, I've created a new branch which implements the fix following Option 2 above: https://github.com/spookylukey/django-paypal/compare/master...djw:issue-329 I'll test this out for a few days and then submit a...

This issue is a duplicate of: http://code.google.com/p/as3xls/issues/detail?id=11 I've only been fixing bugs in the xls-reading code, and I'm pretty sure this is a problem with the existing xls-writing code. Feel...

Excel stores dates as integers — as3xls uses some heuristics to determine whether to convert the integer to a Date object. These must be giving the wrong answer for your...

Sorry, I decided to switch to another package. Will close this!

The transformation above is already handled by xlwt: https://github.com/python-excel/xlwt/blob/5a222d0315b6d3ce52a3cedd7c3e41309587c107/xlwt/Row.py#L86-L106 In order to get them to display correctly you need to specify a formatter, such as: ```py if isinstance(col, date): date_fmt...