From 18e45e9c1e2e818cc19ed8d72b98056d20b9a6cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thibault=20Delavall=C3=A9e?= Date: Tue, 19 Nov 2013 17:44:28 +0100 Subject: [PATCH] [CLEAN] payment_acquirer: mise cleaning bzr revid: tde@openerp.com-20131119164428-sq30m2jg1lcps00t --- .../models/payment_acquirer.py | 2 +- addons/payment_acquirer/tests/common.py | 19 ------------------- 2 files changed, 1 insertion(+), 20 deletions(-) diff --git a/addons/payment_acquirer/models/payment_acquirer.py b/addons/payment_acquirer/models/payment_acquirer.py index 50d25ff983e..c26742fc7ae 100644 --- a/addons/payment_acquirer/models/payment_acquirer.py +++ b/addons/payment_acquirer/models/payment_acquirer.py @@ -8,7 +8,7 @@ _logger = logging.getLogger(__name__) class ValidationError(ValueError): - """ Used for value error when validatin coming from acquirers. """ + """ Used for value error when validating transaction data coming from acquirers. """ pass diff --git a/addons/payment_acquirer/tests/common.py b/addons/payment_acquirer/tests/common.py index df368f5b1dd..5c915f80cbf 100644 --- a/addons/payment_acquirer/tests/common.py +++ b/addons/payment_acquirer/tests/common.py @@ -1,23 +1,4 @@ # -*- coding: utf-8 -*- -############################################################################## -# -# OpenERP, Open Source Business Applications -# Copyright (c) 20123TODAY OpenERP S.A. -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# -############################################################################## from openerp.tests import common