diff options
| author | Dolph Mathews <dolph.mathews@gmail.com> | 2011-12-09 14:04:31 -0600 |
|---|---|---|
| committer | Dolph Mathews <dolph.mathews@gmail.com> | 2011-12-09 14:04:31 -0600 |
| commit | a09a66ce91fbe7e4f5526eb68f174c4d698e5880 (patch) | |
| tree | 3272daf91f98c26ddc92518cc9d7dd62de0e969a | |
| parent | 057c050506e2eecf1c73989042815f2976825e3c (diff) | |
Fixed broken import of version info (bug 902316)
Change-Id: I9efaab46c1fe93dbfc9e9c08c6b79a8c23eb8fd5
| -rw-r--r-- | doc/source/conf.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/source/conf.py b/doc/source/conf.py index 1f7b8b03..ac43451c 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -78,11 +78,11 @@ copyright = u'2011-present, OpenStack, LLC.' # built documents. # # The short X.Y version. -from keystone import version as keystone_version +from keystone import version # The full version, including alpha/beta/rc tags. -release = keystone_version() +release = version.version() # The short X.Y version. -version = keystone_version() +version = version.canonical_version() # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. |
