Fix imports for python3

The syntax for imports has changed for python3, lets use the new
syntax.

Change-Id: Ia985424bf23b44e492f51182179d2e476cdcccbb
Signed-off-by: Paul Belanger <pabelanger@redhat.com>
This commit is contained in:
Paul Belanger 2017-05-10 11:22:48 -04:00
parent 841f120ff6
commit d892837cad
No known key found for this signature in database
GPG Key ID: 611A80832067AF38
9 changed files with 25 additions and 24 deletions

View File

@ -23,11 +23,11 @@ import time
import shlex import shlex
import sys import sys
import config as nodepool_config from nodepool import config as nodepool_config
import exceptions from nodepool import exceptions
import provider_manager from nodepool import provider_manager
import stats from nodepool import stats
import zk from nodepool import zk
MINS = 60 MINS = 60

View File

@ -17,13 +17,14 @@
import logging.config import logging.config
import sys import sys
from prettytable import PrettyTable
from nodepool import launcher from nodepool import launcher
from nodepool import provider_manager from nodepool import provider_manager
from nodepool import status from nodepool import status
from nodepool import zk from nodepool import zk
from nodepool.cmd import NodepoolApp from nodepool.cmd import NodepoolApp
from config_validator import ConfigValidator from nodepool.cmd.config_validator import ConfigValidator
from prettytable import PrettyTable
log = logging.getLogger(__name__) log = logging.getLogger(__name__)

View File

@ -21,8 +21,8 @@ from six.moves import configparser as ConfigParser
import time import time
import yaml import yaml
import fakeprovider from nodepool import fakeprovider
import zk from nodepool import zk
class ConfigValue(object): class ConfigValue(object):

View File

@ -21,7 +21,7 @@ import uuid
import shade import shade
import exceptions from nodepool import exceptions
class Dummy(object): class Dummy(object):

View File

@ -26,13 +26,12 @@ import socket
import threading import threading
import time import time
import exceptions from nodepool import exceptions
import nodeutils as utils from nodepool import nodeutils as utils
import provider_manager from nodepool import provider_manager
import stats from nodepool import stats
import config as nodepool_config from nodepool import config as nodepool_config
from nodepool import zk
import zk
MINS = 60 MINS = 60
HOURS = 60 * MINS HOURS = 60 * MINS

View File

@ -25,7 +25,7 @@ import logging
import paramiko import paramiko
import exceptions from nodepool import exceptions
log = logging.getLogger("nodepool.utils") log = logging.getLogger("nodepool.utils")

View File

@ -21,10 +21,11 @@ from contextlib import contextmanager
import shade import shade
import exceptions from nodepool import exceptions
import fakeprovider from nodepool import fakeprovider
from nodeutils import iterate_timeout from nodepool.nodeutils import iterate_timeout
from task_manager import TaskManager, ManagerStoppedException from nodepool.task_manager import ManagerStoppedException
from nodepool.task_manager import TaskManager
IPS_LIST_AGE = 5 # How long to keep a cached copy of the ip list IPS_LIST_AGE = 5 # How long to keep a cached copy of the ip list

View File

@ -23,7 +23,7 @@ import logging
import time import time
import requests.exceptions import requests.exceptions
import stats from nodepool import stats
class ManagerStoppedException(Exception): class ManagerStoppedException(Exception):
pass pass

View File

@ -20,7 +20,7 @@ from paste import httpserver
import webob import webob
from webob import dec from webob import dec
import status from nodepool import status
"""Nodepool main web app. """Nodepool main web app.