Am getting SettingNotSet error when I visit a product page. Please can anyone 
shed some light on it? 
http://dpaste.com/108256/


****************
SettingNotSet at /shop/product/krishna/

Request Method:         GET
Request URL:    http://127.0.0.1:8000/shop/product/krishna/
Exception Type:         SettingNotSet
Exception Value:        

Exception Location:     ../../apps/livesettings/functions.py in get_config, 
line 67

******************



Here is the revelant code from livesettings/function.py ln 67 that raises this 
exception:

***********
        def get_config(self, group, key):
            try:
                if isinstance(group, values.ConfigurationGroup):
                    group = group.key

                cg = self.settings.get(group, None)
                if not cg:
                    raise SettingNotSet('%s config group does not exist' % 
group)
                
                else:
                    return cg[key]
            except KeyError:
                raise SettingNotSet('%s.%s' % (group, key))

*********

thanks
shakthi

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Satchmo users" 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/satchmo-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to