~mordred/nova/volume-cleanup

« back to all changes in this revision

Viewing changes to nova/scheduler/least_cost.py

  • Committer: Tarmac
  • Author(s): Matthew Hooker
  • Date: 2011-07-29 19:48:58 UTC
  • mfrom: (1336.2.13 pylint-fixes)
  • Revision ID: tarmac-20110729194858-jpt7ggbes5v1z1fz
Fix various errors discovered by pylint and pyflakes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
from nova import log as logging
29
29
from nova.scheduler import zone_aware_scheduler
30
30
from nova import utils
 
31
from nova import exception
31
32
 
32
33
LOG = logging.getLogger('nova.scheduler.least_cost')
33
34