Re: 'str' object has no attribute 'resolve' Exception Location: C:\Python25\Lib\site-packages\django\core\urlresolvers.py in resolve,

2010-10-28 Thread Suraj Jacob
change it from
(r"wap/di/sub",current_datetime)

to
(r'^wap/di/sub','current_datetime')


On Thu, Oct 28, 2010 at 15:52, sami nathan  wrote:

> (r"^wap/di/sub",current_datetime)
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@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.



'str' object has no attribute 'resolve' Exception Location: C:\Python25\Lib\site-packages\django\core\urlresolvers.py in resolve,

2010-10-28 Thread sami nathan
-- Forwarded message --
From: sami nathan <itssami.g...@gmail.com>
Date: Thu, Oct 28, 2010 at 3:41 PM
Subject: ATTRIBUTE ERROR
To: django-users@googlegroups.com


My occured Error is

Exception Value:

'str' object has no attribute 'resolve'

Exception Location:
       C:\Python25\Lib\site-packages\django\core\urlresolvers.py in resolve,
line 217
~
MY URLS.PY LOOKS LIKE THIS
from django.conf.urls.defaults import *
from flip.view import current_datetime

urlpatterns = ('',
   # Example:

      (r"^wap/di/sub",current_datetime)

)
   # Uncomment the admin/doc line below to enable admin documentation:
   # (r'^admin/doc/', include('django.contrib.admindocs.urls')),
   # Uncomment the next line to enable the admin:
   # (r'^admin/', include(admin.site.urls))
My view .py Looks like this
from django.http import *
import urllib

def current_datetime(request):
   word = request.GET['word']
   message = 
urllib.urlopen('http://m.broov.com/wap/di/sub?word='+word+'=00submit=Submit',)
   return HttpResponse (message)

Please help me i dont na what happens it was running succesfully but
noow its not

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@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.