On Sun, Mar 22, 2009 at 5:33 AM, dbbarua <dbba...@gmail.com> wrote: > > Hi Everybody, > I have a problem viewing my rapidsms django > application > > when i use my locally installed django app by typing in the browser > > http://127.0.0.1:8000 > > I get this error > > ViewDoesNotExist at / > Could not import rapidsms.balert.views. Error was: cannot import name > ugettext > Request Method: GET > Request URL: http://127.0.0.1:8000/ > Exception Type: ViewDoesNotExist > Exception Value: Could not import rapidsms.balert.views. Error was: > cannot import name ugettext > Exception Location: /usr/lib/python2.5/site-packages/django/core/ > urlresolvers.py in _get_callback, line 127 > > How do i resolve this...? >
In a previous thread you reported a problem with this app using a pre-1.0 model parameter (core), which you note you solved by downgrading to Django 0.93 -- I'm guessing you actually meant 0.96.3, since I've never heard of a Django 0.93. This one you are reporting now looks like the app is expecting a version of Django higher than 0.96, since I'm guessing it's attempting to import ugettext from django.utils.translation, and ugettext wasn't added to django.utils.translation until sometime after 0.96. I think a better fix for your original problem would be to upgrade this rapidsms app to a version that runs on Django 1.0. What you've got now apparently expects some (non-official-release) version of Django between 0.96 and 1.0. I'm not familiar with this app, but browsing the subversion repository on sourceforge for it shows that core=True is no longer present in the models.py file, so I'd expect it has an official release that runs on Django 1.0. Karen --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---