diff -r 88cb9f42880c -r 4a07363689b5 project/scipycon/registration/views.py --- a/project/scipycon/registration/views.py Thu Dec 09 19:33:57 2010 +0530 +++ b/project/scipycon/registration/views.py Thu Dec 09 19:34:39 2010 +0530 @@ -380,7 +380,7 @@ regs = Registration.objects.all() for reg in regs: row = [] - row.append(reg.registrant.get_full_name()) + row.append('"%"' % reg.registrant.get_full_name()) row.append(reg.city) payment, create = reg.registrant.payment_set.get_or_create( user=reg.registrant, scope=reg.scope)