~anybox/aeroo/openerp6

« back to all changes in this revision

Viewing changes to report_aeroo_direct_print/check_deps.py

  • Committer: root
  • Date: 2013-05-16 15:46:46 UTC
  • Revision ID: root@erp.kndati.lv-20130516154646-5lesr8tyzl1vdc0k
1.2.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- encoding: utf-8 -*-
 
2
##############################################################################
 
3
#
 
4
# Copyright (c) 2008-2012 Alistek Ltd (http://www.alistek.com) All Rights Reserved.
 
5
#                    General contacts <info@alistek.com>
 
6
#
 
7
# WARNING: This program as such is intended to be used by professional
 
8
# programmers who take the whole responsability of assessing all potential
 
9
# consequences resulting from its eventual inadequacies and bugs
 
10
# End users who are looking for a ready-to-use solution with commercial
 
11
# garantees and support are strongly adviced to contract a Free Software
 
12
# Service Company
 
13
#
 
14
# This program is Free Software; you can redistribute it and/or
 
15
# modify it under the terms of the GNU General Public License
 
16
# as published by the Free Software Foundation; either version 3
 
17
# of the License, or (at your option) any later version.
 
18
#
 
19
# This module is GPLv3 or newer and incompatible
 
20
# with OpenERP SA "AGPL + Private Use License"!
 
21
#
 
22
# This program is distributed in the hope that it will be useful,
 
23
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
24
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
25
# GNU General Public License for more details.
 
26
#
 
27
# You should have received a copy of the GNU General Public License
 
28
# along with this program; if not, write to the Free Software
 
29
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 
30
#
 
31
##############################################################################
 
32
 
 
33
from osv import osv
 
34
from tools.translate import _
 
35
 
 
36
__all__ = [
 
37
    'check_deps',
 
38
]
 
39
 
 
40
def check_deps(check_list):
 
41
    error = False
 
42
    import_errors = []
 
43
    for imp in check_list:
 
44
        try:
 
45
            exec imp in {}
 
46
        except ImportError,e:
 
47
            error = True
 
48
            import_errors.append(str(e))
 
49
    if error:
 
50
        raise osv.except_osv(_('Warning!')+' '+_('Unmet python dependencies!'), '\n'.join(import_errors))
 
51