project/scipycon/registration/views.py
changeset 349 4a07363689b5
parent 348 88cb9f42880c
child 350 baf939071b60
--- 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)