~ubuntu-branches/ubuntu/quantal/keystone/quantal-security

« back to all changes in this revision

Viewing changes to keystone/common/manager.py

  • Committer: Package Import Robot
  • Author(s): Chuck Short
  • Date: 2012-06-22 12:27:50 UTC
  • mto: (35.1.1 quantal-proposed)
  • mto: This revision was merged to the branch mainline in revision 28.
  • Revision ID: package-import@ubuntu.com-20120622122750-4urdq17en1990apn
Tags: upstream-2012.2~f2~20120622.2353
ImportĀ upstreamĀ versionĀ 2012.2~f2~20120622.2353

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
 
17
17
import functools
18
18
 
19
 
from keystone.common import utils
 
19
from keystone.openstack.common import importutils
20
20
 
21
21
 
22
22
class Manager(object):
33
33
    """
34
34
 
35
35
    def __init__(self, driver_name):
36
 
        self.driver = utils.import_object(driver_name)
 
36
        self.driver = importutils.import_object(driver_name)
37
37
 
38
38
    def __getattr__(self, name):
39
39
        """Forward calls to the underlying driver."""