From cf705c59615fb68cdbfe664e7827e4a275a4a282 Mon Sep 17 00:00:00 2001 From: Monty Taylor Date: Wed, 21 Nov 2012 10:53:18 -0800 Subject: Make project pyflakes clean. Added both a tox test-env for pyflakes and fixed the current pyflakes errors. This did actually fix a couple of bugs. The CI team has started using pyflakes on its projects and also has started using oslo for things, so ignoring pyflakes warnings on the oslo code was starting to get old. However, additionally, pyflakes is pretty solid, so we should maybe consider gating on it across the board. (% locals() is the biggest thing that we do that it doesn't like) Change-Id: Iac1ca62db301892b7863711162fcbc74807eb24f --- openstack/common/utils.py | 9 --------- 1 file changed, 9 deletions(-) (limited to 'openstack/common/utils.py') diff --git a/openstack/common/utils.py b/openstack/common/utils.py index e5e04ba..05f0e9f 100644 --- a/openstack/common/utils.py +++ b/openstack/common/utils.py @@ -20,15 +20,6 @@ System-level utilities and helper functions. """ import logging -import random -import shlex - -from eventlet.green import subprocess -from eventlet import greenthread - -from openstack.common import exception -from openstack.common.gettextutils import _ - LOG = logging.getLogger(__name__) -- cgit