On 16/06/2013 21:13, Sandeep kaur wrote:
I have this Web application made in Django 1.3. And now when I use it
on Django 1.5, it does not work. It give error as no module simple.
So, Is there any migration tool
to make my application work easily on 1.5 version without manually
making lot of changes?
You help will be appreciated.


The most annoying changes you are going to have to make are likely URL tags in templates. You'll need to change all {% url url_name %} to {% url "url_name" %}. Depending on how many templates you have this might take awhile :).

--
You received this message because you are subscribed to the Google Groups "Django 
users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to