On Thu, May 6, 2010 at 8:03 PM, Chris Moffitt <[email protected]> wrote:
>
> Could you update to tip - rev 1861 or greater. We checked in a change to fix
> this so I think you should be good to go once you do that.
>

I'm still getting that error message, unfortunately.

NoReverseMatch at /admin/110802/variations/

Reverse for 'product_product_change' with arguments '(112204,)' and
keyword arguments '{}' not found.

I'm working with the head of the tip now.


$ hg log -l 2
changeset:   1861:96494e920590
tag:         tip
parent:      1855:48722801011c
parent:      1860:2f66d517160d
user:        Tay Ray Chuan <[email protected]>
date:        Tue May 04 11:06:36 2010 +0800
summary:     Merge in fix for admin urls

changeset:   1860:2f66d517160d
user:        Tay Ray Chuan <[email protected]>
date:        Tue May 04 10:53:00 2010 +0800
summary:     satchmo_product_admin: use reverse_admin_url()

Hoping someone can point me in the right direction. Perhaps this is
due to the way I have my site/urls configured..? I seem to be doing
things differently than most, where I have two satchmo stores on the
same domain (e.g. http://mysite.com/store1 and
http://mysite.com/store2).

My urls.py for site1 looks like this:

from django.conf.urls.defaults import *
from django.contrib import admin
from django.conf import settings
from satchmo_store.urls import basepatterns
import passion.satchel.urls
import passion.satchel.views
import passion.simpleviewer.urls

admin.autodiscover()

urlpatterns = patterns('',

    (r'^diagram/', include(passion.satchel.urls)),
    (r'^simpleviewer/', include(passion.simpleviewer.urls)),

    (r'^admin/', include(admin.site.urls)),
)

urlpatterns += basepatterns + patterns('',
    (r'^', include('satchmo_store.shop.urls')),
)


--Stuart

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