[IMP] base_report_to_printer - clean imports

This commit is contained in:
Yannick Vaucher
2013-09-30 13:03:49 +02:00
parent c19ab3e0e5
commit f30200c090
4 changed files with 9 additions and 18 deletions

View File

@@ -21,5 +21,5 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
import printing
import wizard
from . import printing
from . import wizard

View File

@@ -23,24 +23,19 @@
##############################################################################
import os
import time
import base64
import threading
from tempfile import mkstemp
import logging
import cups
import thread
from threading import Thread
from threading import Lock
import netsvc
import tools
import time
from openerp import pooler
from openero.osv import orm, fields
import pooler
import tools
from tools.translate import _
from base_calendar import base_calendar
import logging
from openerp.tools.translate import _
from openerp.addons.base_calendar import base_calendar
#

View File

@@ -20,4 +20,4 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
import update_printers
from . import update_printers

View File

@@ -21,13 +21,9 @@
#
##############################################################################
import time
import subprocess
import cups
import netsvc
from openerp.osv import orm, fields
from tools.translate import _
from openerp.osv import orm
class printing_printer_update_wizard(orm.TransientModel):