fix the fix

pull/7/merge
unknown 2014-01-08 12:49:48 +01:00
parent 8d637a5f80
commit b8ad60e99d
3 changed files with 11 additions and 5 deletions

View File

@ -20,8 +20,8 @@
# #
############################################################################## ##############################################################################
from . import wizard
try: try:
from . import wizard
from . import report from . import report
except ImportError: except ImportError:
import logging import logging

View File

@ -20,8 +20,14 @@
# #
############################################################################## ##############################################################################
from . import account_journal try:
from . import wizard from . import account_journal
from . import report from . import wizard
from . import report
except ImportError:
import logging
logging.getLogger('openerp.module').warning('report_xls not available in addons path. account_financial_report_webkit_xls will not be usable')
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

View File

@ -20,8 +20,8 @@
# #
############################################################################## ##############################################################################
from . import account_move_line
try: try:
from . import account_move_line
from . import report from . import report
except ImportError: except ImportError:
import logging import logging