Thanks for the reply. I figured it out eventually. Instead of using the SATCHMO_SETTINGS dictionary, I was simply inserting CUSTOM_SHIPPING_MODULES as it's own setting. After correcting this, everything works!
Thanks On Tue, Jun 22, 2010 at 8:04 AM, Brian O'Connor <[email protected]> wrote: > This might be a product of copy paste, but according to your email you have > > SHIPPINH_ACTIVE = config_get('SHIPPING', 'MODULES') > SHIPPING_ACTIVE.add_choice(('app.shipping', 'My custom shipping')) > > > There seems to be a typo where you wrote SHIPPINH instead of SHIPPING > > On Sun, Jun 20, 2010 at 2:49 AM, craig <[email protected]> wrote: > >> Hi, >> >> I'm trying to get a custom shipping module working. I have it in >> myproject/app/shipping, and used the dummy module as a template. I've >> also added it to my INSTALLED_APPS, and included it in the >> CUSTOM_SHIPPING_MODULES setting. For some reason though, I can't get >> it to show up in the admin drop down list of available shipping >> modules. >> >> >> Here is the contents of config.py: >> >> from livesettings import * >> >> SHIPPINH_ACTIVE = config_get('SHIPPING', 'MODULES') >> SHIPPING_ACTIVE.add_choice(('app.shipping', 'My custom shipping')) >> >> I'm not sure why it's not working though. Is anything else required >> that I'm missing? >> >> -- >> 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]<satchmo-users%[email protected]> >> . >> For more options, visit this group at >> http://groups.google.com/group/satchmo-users?hl=en. >> >> > > > -- > Brian O'Connor > > -- > 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]<satchmo-users%[email protected]> > . > For more options, visit this group at > http://groups.google.com/group/satchmo-users?hl=en. > -- -co -- 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.
