Re: [Ilugc] Python error starting OpenERP 6.1 RC1 on Centos 6.2

2012-01-25 Thread VK Sameer
On 2012-01-24 at 20:46:20 GMT ஆமாச்சு ramadasan@... writes: On Tuesday 24 January 2012 06:17 AM, VK Sameer wrote: Request for help from Pythonistas and/or OpenERP users. I'm trying to install OpenERP 6.1RC1 (http://nightly.openerp.com/6.1/release/openerp-6.1rc1.tar.gz) on Centos 6.2

Re: [Ilugc] Python error starting OpenERP 6.1 RC1 on Centos 6.2

2012-01-25 Thread VK Sameer
On 2012-01-25 at 06:17:23 GMT kenneth gonsalves lawgon@... writes: On Tue, 2012-01-24 at 12:23 +, VK Sameer wrote: return sorted([(k,v) for k,v in fields.__dict__.iteritems() I honestly don't know the code and am operating at a syntactic-correctness level rather than

Re: [Ilugc] Python error starting OpenERP 6.1 RC1 on Centos 6.2

2012-01-24 Thread kenneth gonsalves
On Tue, 2012-01-24 at 07:46 +, VK Sameer wrote: return sorted([(k,k) for k,v in fields.__dict__.iteritems() should this not be: return sorted([(k,v) for k,v in fields.__dict__.iteritems() -- regards Kenneth Gonsalves ___ ILUGC Mailing List:

Re: [Ilugc] Python error starting OpenERP 6.1 RC1 on Centos 6.2

2012-01-24 Thread VK Sameer
On 2012-01-24 at 07:59:28 GMT kenneth gonsalves lawgon@... writes: On Tue, 2012-01-24 at 07:46 +, VK Sameer wrote: return sorted([(k,k) for k,v in fields.__dict__.iteritems() should this not be: return sorted([(k,v) for k,v in fields.__dict__.iteritems() I honestly don't know the

Re: [Ilugc] Python error starting OpenERP 6.1 RC1 on Centos 6.2

2012-01-24 Thread VK Sameer
On 2012-01-24 at 07:59:28 GMT kenneth gonsalves lawgon@... writes: On Tue, 2012-01-24 at 07:46 +, VK Sameer wrote: return sorted([(k,k) for k,v in fields.__dict__.iteritems() should this not be: return sorted([(k,v) for k,v in fields.__dict__.iteritems() Also, changing to (k,v) and

Re: [Ilugc] Python error starting OpenERP 6.1 RC1 on Centos 6.2

2012-01-24 Thread ஆமாச்சு
On Tuesday 24 January 2012 06:17 AM, VK Sameer wrote: Request for help from Pythonistas and/or OpenERP users. I'm trying to install OpenERP 6.1RC1 (http://nightly.openerp.com/6.1/release/openerp-6.1rc1.tar.gz) on Centos 6.2 using Python 2.6 and get this very weird error: python:

Re: [Ilugc] Python error starting OpenERP 6.1 RC1 on Centos 6.2

2012-01-24 Thread kenneth gonsalves
On Tue, 2012-01-24 at 12:23 +, VK Sameer wrote: return sorted([(k,v) for k,v in fields.__dict__.iteritems() I honestly don't know the code and am operating at a syntactic-correctness level rather than semantic-correctness level. what does this mean? -- regards Kenneth Gonsalves

[Ilugc] Python error starting OpenERP 6.1 RC1 on Centos 6.2

2012-01-23 Thread VK Sameer
Hi, Request for help from Pythonistas and/or OpenERP users. I'm trying to install OpenERP 6.1RC1 (http://nightly.openerp.com/6.1/release/openerp-6.1rc1.tar.gz) on Centos 6.2 using Python 2.6 and get this very weird error: python: Python/compile.c:3437: stackdepth_walk: Assertion `depth = 0'

Re: [Ilugc] Python error starting OpenERP 6.1 RC1 on Centos 6.2

2012-01-23 Thread VK Sameer
Repeating what I wrote in http://www.openerp.com/forum/post99425.html#p99425: The problem seems to be in openerp/addons/base/ir/ir_model.py: def _get_fields_type(self, cr, uid, context=None): return sorted([(k,k) for k,v in fields.__dict__.iteritems() if type(v) ==