[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/>. # along with this program. If not, see <http://www.gnu.org/licenses/>.
# #
############################################################################## ##############################################################################
import printing from . import printing
import wizard from . import wizard

View File

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

View File

@@ -20,4 +20,4 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>. # 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 cups
import netsvc from openerp.osv import orm
from openerp.osv import orm, fields
from tools.translate import _
class printing_printer_update_wizard(orm.TransientModel): class printing_printer_update_wizard(orm.TransientModel):