Fix error message

This commit is contained in:
Alexis de Lattre
2016-11-03 13:39:00 +01:00
parent adfad0d113
commit 4b7a6ea0f9
2 changed files with 2 additions and 2 deletions

View File

@@ -292,7 +292,7 @@ class AccountJournal(models.Model):
if col not in move_line_obj._columns:
raise UserError(
_("Missing column! Column %s you try to import is not "
"present in the bank statement line!") % col)
"present in the account move line!") % col)
move_vals = self.prepare_move_vals(result_row_list, parser)
move = move_obj.create(move_vals)
try:

View File

@@ -1,4 +1,4 @@
# -*- coding: utf-8 -*# -*- coding: utf-8 -*-
# -*- coding: utf-8 -*-
# © 2012-2015 Yannick Vaucher (Camptocamp)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
from . import models