I get this message too on Windows XP with 0.9a1. This simple model.py
will provoke the error:

from sqlobject import *
from turbogears.database import PackageHub
# Uncomment the following line if you wish to use Identity and
SO_Provider
# from turbogears.identity.soprovider import TG_User, TG_Group,
TG_Permission
--
hub = PackageHub("shopping")
__connection__ = hub

class POS(SQLObject):
        name = StringCol( length = 100)
        x = FloatCol()
        y = FloatCol()
        z = FloatCol()
        sector = ForeignKey( 'Sector')

class Sector( SQLObject):
        name = StringCol( length = 100)
        faction = ForeignKey( 'Faction')
        POSs = MultipleJoin( 'POS')

class Faction( SQLObject):
        name = StringCol( length = 100)
        color = StringCol( length = 100)
        sectors = MultipleJoin( 'Sector')
--

Database is SQLite.


--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to