[FIX]
authorStephane Wirtel <stephane@tinyerp.com>
Tue, 6 Jan 2009 12:42:58 +0000 (13:42 +0100)
committerStephane Wirtel <stephane@tinyerp.com>
Tue, 6 Jan 2009 12:42:58 +0000 (13:42 +0100)
bzr revid: stephane@tinyerp.com-20090106124258-p1ob4opvedf2vywt

addons/account/wizard/wizard_bank_reconcile.py

index e082fae..9ac1053 100644 (file)
@@ -37,8 +37,7 @@ def _action_open_window(self, cr, uid, data, context):
     cr.execute('select default_credit_account_id from account_journal where id=%s', (form['journal_id'],))
     account_id = cr.fetchone()[0]
     if not account_id:
-        raise wizard.except_wizard(_('Error'), _('You have to define the bank account\nin the
-                                                   journal definition for reconciliation.'))
+        raise wizard.except_wizard(_('Error'), _('You have to define the bank account\nin the journal definition for reconciliation.'))
     return {
         'domain': "[('journal_id','=',%d), ('account_id','=',%d), ('state','<>','draft')]" % (form['journal_id'],account_id),
         'name': _('Standard Encoding'),