Re: migration problem from Django0.96 to Django1.0

2008-09-25 Thread vijay bhaskar
Hi karen, sorry for the delay,i did not notice this mail.To solve this issue, i have taken the WEEKDAYS_ABBR code from the trunk and added in the django.utils.dates file. Regards & Thank you, Vijay. On Mon, Sep 15, 2008 at 8:09 PM, Karen Tracey <[EMAIL PROTECTED]> wrote: > On Mon, Sep 15, 2008

Re: migration problem from Django0.96 to Django1.0

2008-09-25 Thread Karen Tracey
On Thu, Sep 25, 2008 at 7:35 AM, jbarker <[EMAIL PROTECTED]> wrote: > > The issue is that WEEKDAYS_ABBR is not defined in /usr/lib/python2.5/ > site-packages/django/utils/dates.py so it's not found. Edit dates.py > and add it in. > > For anyone who hits this problem, just editing dates.py to

Re: migration problem from Django0.96 to Django1.0

2008-09-25 Thread jbarker
The issue is that WEEKDAYS_ABBR is not defined in /usr/lib/python2.5/ site-packages/django/utils/dates.py so it's not found. Edit dates.py and add it in. Joe On Sep 15, 10:39 am, "Karen Tracey" <[EMAIL PROTECTED]> wrote: > On Mon, Sep 15, 2008 at 1:58 AM, vijay bhaskar <[EMAIL PROTECTED]>

Re: migration problem from Django0.96 to Django1.0

2008-09-15 Thread Karen Tracey
On Mon, Sep 15, 2008 at 1:58 AM, vijay bhaskar <[EMAIL PROTECTED]> wrote: > I solved that problem. > > How please? Someone else is running into trouble with WEEKDAYS_ABBR and I can't understand why. What fixed the problem for you? Thanks, Karen >> >> On Mon, Sep 15, 2008 at 11:07 AM, vijay

migration problem from Django0.96 to Django1.0

2008-09-15 Thread vijay
-> Re: migration problem from Django0.96 to Django1.0 django-users   <-- Thread --> <-- Date --> <!-- google_ad_client = "pub-7266757337600734"; google_alternate_ad_url =

Re: migration problem from Django0.96 to Django1.0

2008-09-14 Thread vijay bhaskar
I solved that problem. On Mon, Sep 15, 2008 at 11:09 AM, vijay bhaskar <[EMAIL PROTECTED]> wrote: > > > On Mon, Sep 15, 2008 at 11:07 AM, vijay bhaskar <[EMAIL PROTECTED]> wrote: > >> Hi karen,Thanks for your reply.but the problem is ,there is no definition >> for WEEKDAYS_ABBR in the

Re: migration problem from Django0.96 to Django1.0

2008-09-14 Thread vijay bhaskar
Hi karen,Thanks for your reply.but the problem is ,there is no definition for WEEK_ABBR in the django.utils.dates.That's the reason its throwing error.How can i get rid of this? Thanks & regards Vijay On Sat, Sep 13, 2008 at 5:39 PM, Karen Tracey <[EMAIL PROTECTED]> wrote: > On Sat, Sep 13,

Re: migration problem from Django0.96 to Django1.0

2008-09-13 Thread Karen Tracey
On Sat, Sep 13, 2008 at 5:28 AM, vijay <[EMAIL PROTECTED]> wrote: > > When i'am trying to migrate my application which is wriiten in 0.96 > version to 1.0, i encountered the following error message. > > File "c:\python25\lib\site-packages\django\utils\dateformat.py", > line 127, in D >return

migration problem from Django0.96 to Django1.0

2008-09-13 Thread vijay
When i'am trying to migrate my application which is wriiten in 0.96 version to 1.0, i encountered the following error message. File "c:\python25\lib\site-packages\django\utils\dateformat.py", line 127, in D return WEEKDAYS_ABBR[self.data.weekday()] NameError: global name 'WEEKDAYS_ABBR' is