Change import order

[H306] Alphabetically order your imports by the full module path.
Organize your imports according to the Import order template and
Real-world Import Order Examples below.

{{stdlib imports in human alphabetical order}}
\n
{{third-party lib imports in human alphabetical order}}
\n
{{project imports in human alphabetical order}}
\n
\n
{{begin your code}}

Change-Id: I1ebdbb49a2edbeb6ccf6fd8c48636a3e3363e12c
This commit is contained in:
howardlee 2016-11-11 18:28:09 +08:00 committed by howard lee
parent f320b35137
commit 6145de0a9c
1 changed files with 7 additions and 5 deletions

View File

@ -15,17 +15,18 @@ from __future__ import print_function
from distutils import spawn as distspawn
import os
from oslo_config import cfg
from oslo_log import log
import socket
import sys
from tempfile import NamedTemporaryFile
import tempfile
from oslo_config import cfg
from oslo_log import log
from oslo_utils import encodeutils
from freezer import __version__ as FREEZER_VERSION
from freezer.utils import config as freezer_config
from freezer.utils import utils
from freezer.utils import winutils
from oslo_utils import encodeutils
CONF = cfg.CONF
LOG = log.getLogger(__name__)
@ -596,7 +597,8 @@ def get_backup_args():
not winutils.is_windows():
# handle --config option with tmp config file
if backup_args.config:
conf_file = NamedTemporaryFile(prefix='freezer_job_', delete=False)
conf_file = tempfile.NamedTemporaryFile(prefix='freezer_job_',
delete=False)
# remove the limits from the new file
if 'upload_limit' in conf.default:
conf.default.pop('upload_limit')