It sure did. That solved the problem. Thanks
On Jun 19, 11:08 am, "Austin (Google)" <[EMAIL PROTECTED]> wrote: > Hi, > > Event status can only be of value: CONFIRMED, TENATIVE or CANCELED > (http://code.google.com/apis/gdata/javadoc/com/google/gdata/data/exten... > ) > > example - > > event_status = gdata.calendar.EventStatus() > event_status.value = 'TENTATIVE' > event.event_status = event_status > > Hope that helps, > Austin > > > > On Thu, Jun 19, 2008 at 12:12 AM, Gbenga <[EMAIL PROTECTED]> wrote: > > > Hello, > > I am trying to update/insert a Google Calendar Event using the GCal > > Python library. However, whenever I try to do so with any enum field > > filled (like attendee_status, transparency, and event_status). I get > > an error like > > > {'status': 400, 'body': '[Line 2, Column 465, element ns1:eventStatus] > > Missing attribute: 'value'', 'reason': 'Bad Request'} > > > Snippets of the code is below: > > > event = gdata.calendar.CalendarEventEntry() > > pre_gdata = 'http://schemas.google.com/g/2005#event.' > > tra = gdata.calendar.EventStatus() > > tra.value = pre_gdata +'opaque' > > event.transparency = tra > > > Any help is surely appreciated. > > > Thanks.- Hide quoted text - > > - Show quoted text - --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google Calendar Data API" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/google-calendar-help-dataapi?hl=en -~----------~----~----~----~------~----~------~--~---
