diff options
| author | Andy Smith <github@anarkystic.com> | 2012-02-02 11:23:58 -0800 |
|---|---|---|
| committer | Andy Smith <github@anarkystic.com> | 2012-02-02 11:23:58 -0800 |
| commit | 50e4e4d63cbec841299aa960f8faa9e6b48a5ed2 (patch) | |
| tree | 7d77cb973fafabc25e7c9702a254ce56397c3c7f | |
| parent | 67ba46c1db3174cc4acc4066430d6eb0c657de8e (diff) | |
| parent | 433e7db49920d5b0d233d623d7376589c2897d57 (diff) | |
Merge pull request #34 from 4P/docup
minor docstring update for new locations
| -rw-r--r-- | keystone/catalog/core.py | 2 | ||||
| -rw-r--r-- | keystone/contrib/ec2/core.py | 2 | ||||
| -rw-r--r-- | keystone/identity/core.py | 2 | ||||
| -rw-r--r-- | keystone/policy/core.py | 2 | ||||
| -rw-r--r-- | keystone/token/core.py | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/keystone/catalog/core.py b/keystone/catalog/core.py index aecae36a..93c0de20 100644 --- a/keystone/catalog/core.py +++ b/keystone/catalog/core.py @@ -17,7 +17,7 @@ CONF = config.CONF class Manager(manager.Manager): """Default pivot point for the Catalog backend. - See :mod:`keystone.manager.Manager` for more details on how this + See :mod:`keystone.common.manager.Manager` for more details on how this dynamically calls the backend. """ diff --git a/keystone/contrib/ec2/core.py b/keystone/contrib/ec2/core.py index 08e46647..0d7725a1 100644 --- a/keystone/contrib/ec2/core.py +++ b/keystone/contrib/ec2/core.py @@ -39,7 +39,7 @@ CONF = config.CONF class Manager(manager.Manager): """Default pivot point for the EC2 Credentials backend. - See :mod:`keystone.manager.Manager` for more details on how this + See :mod:`keystone.common.manager.Manager` for more details on how this dynamically calls the backend. """ diff --git a/keystone/identity/core.py b/keystone/identity/core.py index ab37f930..80ca31d1 100644 --- a/keystone/identity/core.py +++ b/keystone/identity/core.py @@ -22,7 +22,7 @@ CONF = config.CONF class Manager(manager.Manager): """Default pivot point for the Identity backend. - See :mod:`keystone.manager.Manager` for more details on how this + See :mod:`keystone.common.manager.Manager` for more details on how this dynamically calls the backend. """ diff --git a/keystone/policy/core.py b/keystone/policy/core.py index d5af09fe..694f6285 100644 --- a/keystone/policy/core.py +++ b/keystone/policy/core.py @@ -12,7 +12,7 @@ CONF = config.CONF class Manager(manager.Manager): """Default pivot point for the Policy backend. - See :mod:`keystone.manager.Manager` for more details on how this + See :mod:`keystone.common.manager.Manager` for more details on how this dynamically calls the backend. """ diff --git a/keystone/token/core.py b/keystone/token/core.py index b0385f5a..e7827696 100644 --- a/keystone/token/core.py +++ b/keystone/token/core.py @@ -12,7 +12,7 @@ CONF = config.CONF class Manager(manager.Manager): """Default pivot point for the Token backend. - See :mod:`keystone.manager.Manager` for more details on how this + See :mod:`keystone.common.manager.Manager` for more details on how this dynamically calls the backend. """ |
