diff options
-rw-r--r-- | doc/conf.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/doc/conf.py b/doc/conf.py index 8b3fcfa..75b9031 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -52,8 +52,9 @@ copyright = u'2010, W. Trevor King' # The short X.Y version. version = libbe.version.version(3) # The full version, including alpha/beta/rc tags. -release = '%s (%s)' % (libbe.version.version(), - libbe.version.version_info['revision']) +release = '{} ({})'.format( + libbe.version.version(), + libbe.version.version_info['date']) # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. |