Skip to content

Commit

Permalink
Fix imports in partner_firstname
Browse files Browse the repository at this point in the history
  • Loading branch information
bwrsandman committed Jul 19, 2014
1 parent 43f85b7 commit 5166eda
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions partner_firstname/partner.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
from openerp.osv.orm import Model, fields
from openerp.osv import orm, fields
from openerp.tools.translate import _


class ResPartner(Model):
class ResPartner(orm.Model):
"""Adds lastname and firstname, name become a stored function field"""

_inherit = 'res.partner'
Expand Down

0 comments on commit 5166eda

Please sign in to comment.