[IMP] add a missing import (exceptions)

bzr revid: abo@openerp.com-20130117155003-5akv67tylaz59s7l
This commit is contained in:
Antonin Bourguignon 2013-01-17 16:50:03 +01:00
parent 8214854b79
commit 6b926883cc
1 changed files with 3 additions and 2 deletions

View File

@ -1,6 +1,6 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
############################################################################## ##############################################################################
# #
# OpenERP, Open Source Management Solution # OpenERP, Open Source Management Solution
# Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>). # Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>).
# #
@ -15,7 +15,7 @@
# GNU Affero General Public License for more details. # GNU Affero General Public License for more details.
# #
# You should have received a copy of the GNU Affero General Public License # You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>. # along with this program. If not, see <http://www.gnu.org/licenses/>.
# #
############################################################################## ##############################################################################
@ -28,6 +28,7 @@ SUPERUSER_ID = 1
import addons import addons
import cli import cli
import conf import conf
import exceptions
import loglevels import loglevels
import modules import modules
import netsvc import netsvc