Re: Error was: No module named io

2011-08-30 Thread tiemonster
Let me make a couple of suggestions stemming from my experience: 1. Develop on the same exact version of python that you have installed on your production server. These kinds of backwards incompatible changes have bitten me more than once. This should be true for any language you develop in. You w

Re: Error was: No module named io

2011-08-29 Thread Łukasz Rekucki
On 29 August 2011 15:26, CrabbyPete wrote: > This is what I suspected. Even though Django 1.3 is supposed to > support python 2.5 > Don't want to be rude, but let me repeat: "It's not a problem with Django as 1.3 runs fine on 2.5.X. It's a problem in **your code**". If you're trying to use a non-

Re: Error was: No module named io

2011-08-29 Thread CrabbyPete
This is what I suspected. Even though Django 1.3 is supposed to support python 2.5 On Aug 29, 3:53 am, Łukasz Rekucki wrote: > It's not a path problem. It's a python version problem: > > http://docs.python.org/library/io.html > > "New in version 2.6." > > It's not a problem with Django as 1.3 run

Re: Error was: No module named io

2011-08-29 Thread Łukasz Rekucki
It's not a path problem. It's a python version problem: http://docs.python.org/library/io.html "New in version 2.6." It's not a problem with Django as 1.3 runs fine on 2.5.X. It's a problem in your code, so either upgrade to 2.6 or rewrite your code in terms of the older API that io module repla

Re: Error was: No module named io

2011-08-28 Thread Goran
maybe it is path problem, try to use: from projectname.base.view import io not base.view import io in INSTALLED_APPS use: 'projectname.base', not just 'base', hope it helps, Goran On Aug 28, 2:59 am, CrabbyPete wrote: > I developed my code with python 2.6 and django 1.3. Now that I am > deployi

Re: Error was: No module named io

2011-08-28 Thread CrabbyPete
Type: ViewDoesNotExist at / Exception Value: Could not import base.views. Error was: No module named io On Aug 27, 10:06 pm, sreekanth wrote: > Hi, > > Please check the path , as you changed to a new server and also check the > permissions. > > > > > > > > On S

Re: Error was: No module named io

2011-08-27 Thread sreekanth
Hi, Please check the path , as you changed to a new server and also check the permissions. On Sun, Aug 28, 2011 at 6:29 AM, CrabbyPete wrote: > I developed my code with python 2.6 and django 1.3. Now that I am > deploying it on a dreamhost server the python is version 2.5 and I get > the error

Error was: No module named io

2011-08-27 Thread CrabbyPete
I developed my code with python 2.6 and django 1.3. Now that I am deploying it on a dreamhost server the python is version 2.5 and I get the error above. Is there a work around. Do I need to upgrade python? -- You received this message because you are subscribed to the Google Groups "Django user