jay wrote:
> I see the solution. Add this line as the last line to model.py
>
> soClasses = ('Artist', 'Album', 'Genre', 'Song')
>
> I got it from Ticket #279 (defect)
>
> Jay
This is actually wrong (note the alphabetical order).
It just makes sense to create an entry e.g.
soClasses = ('Class1', 'Calss2' ... etc)
in the order the classes have been defined.
The correct entry is:
soClassed = ('Genre', 'Artist', 'Album', 'Song')
I tried running the example and sure enough it did not work with the
earlier line.
Jay
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"TurboGears" 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/turbogears
-~----------~----~----~----~------~----~------~--~---