← Back to team overview

openerp-india team mailing list archive

[Bug 1003948] [NEW] sale_margin.py has a bad "super()" calls

 

Public bug reported:

OpenERP version 6.1.1

File: openerp/addons/sale_margin/sale_margin.py

Line 73:
return super(self,sale_order)._get_order(cr, uid, ids, context=context)   

I guess it has to be following:

return super(sale_order,self)._get_order(cr, uid, ids, context=context)

** Affects: openobject-addons
     Importance: Undecided
         Status: New

-- 
You received this bug notification because you are a member of OpenERP
Indian Team, which is subscribed to OpenERP Addons.
https://bugs.launchpad.net/bugs/1003948

Title:
  sale_margin.py has a bad "super()" calls

Status in OpenERP Addons (modules):
  New

Bug description:
  OpenERP version 6.1.1

  File: openerp/addons/sale_margin/sale_margin.py

  Line 73:
  return super(self,sale_order)._get_order(cr, uid, ids, context=context)   

  I guess it has to be following:

  return super(sale_order,self)._get_order(cr, uid, ids,
  context=context)

To manage notifications about this bug go to:
https://bugs.launchpad.net/openobject-addons/+bug/1003948/+subscriptions


Follow ups

References