diff options
| author | Jenkins <jenkins@review.openstack.org> | 2012-05-15 16:23:00 +0000 |
|---|---|---|
| committer | Gerrit Code Review <review@openstack.org> | 2012-05-15 16:23:00 +0000 |
| commit | 671c2c113be856f92bc415c5f0e23362dc0680eb (patch) | |
| tree | a45247cbecdec71e60f2166325c7f0178c52375b | |
| parent | 8823f7bef2142a807b3c92e512f602b6b415a3e2 (diff) | |
| parent | fb96f7dff66e35f59a568e592ecea3bd5e500287 (diff) | |
| download | nova-671c2c113be856f92bc415c5f0e23362dc0680eb.tar.gz nova-671c2c113be856f92bc415c5f0e23362dc0680eb.tar.xz nova-671c2c113be856f92bc415c5f0e23362dc0680eb.zip | |
Merge "Pass 'nova' project into ConfigOpts."
| -rw-r--r-- | nova/flags.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/nova/flags.py b/nova/flags.py index 652d3465d..aca602f7d 100644 --- a/nova/flags.py +++ b/nova/flags.py @@ -37,6 +37,8 @@ from nova.openstack.common import cfg class NovaConfigOpts(cfg.CommonConfigOpts): def __init__(self, *args, **kwargs): + if 'project' not in kwargs: + kwargs['project'] = 'nova' super(NovaConfigOpts, self).__init__(*args, **kwargs) self.disable_interspersed_args() |
