diff options
| author | Yun Mao <yunmao@gmail.com> | 2011-12-12 17:46:36 -0500 |
|---|---|---|
| committer | Yun Mao <yunmao@gmail.com> | 2011-12-12 23:12:03 -0500 |
| commit | 1c0859283f4e497cc9abea06039f5595406208ef (patch) | |
| tree | 25ec3b6710de55c22e1d181a12f5bce6a5c6a4be | |
| parent | ff753cd608973f5d72a80aef0f9fb8a646fccc3f (diff) | |
fixed typos. removed an unused import
Change-Id: I3cc1d2b2e89f5f4bd82dd8a259363d4e88708531
| -rw-r--r-- | Authors | 1 | ||||
| -rw-r--r-- | nova/manager.py | 5 |
2 files changed, 3 insertions, 3 deletions
@@ -142,6 +142,7 @@ William Kelly <william.kelly@rackspace.com> William Wolf <throughnothing@gmail.com> Yoshiaki Tamura <yoshi@midokura.jp> Youcef Laribi <Youcef.Laribi@eu.citrix.com> +Yun Mao <yunmao@gmail.com> Yun Shen <Yun.Shen@hp.com> Yuriy Taraday <yorik.sar@gmail.com> Zhixue Wu <Zhixue.Wu@citrix.com> diff --git a/nova/manager.py b/nova/manager.py index b153f1f42..4ebaf0d4b 100644 --- a/nova/manager.py +++ b/nova/manager.py @@ -18,7 +18,7 @@ """Base Manager class. -Managers are responsible for a certain aspect of the sytem. It is a logical +Managers are responsible for a certain aspect of the system. It is a logical grouping of code relating to a portion of the system. In general other components should be using the manager to make changes to the components that it is responsible for. @@ -47,7 +47,7 @@ level(FlatNetwork vs VlanNetwork), and different implementations at the driver level(LinuxNetDriver vs CiscoNetDriver). Managers will often provide methods for initial setup of a host or periodic -tasksto a wrapping service. +tasks to a wrapping service. This module provides Manager, a base class for managers. @@ -55,7 +55,6 @@ This module provides Manager, a base class for managers. from nova import flags from nova import log as logging -from nova import utils from nova.db import base from nova.scheduler import api |
