From 29a7dbd51be635e93cb5af77259e0770c9e39957 Mon Sep 17 00:00:00 2001 From: Nicolas Sebrecht Date: Fri, 4 Mar 2016 22:31:39 +0100 Subject: [PATCH] sphinx doc: remove usage of __bigversion__ Fix regression introduced by 281bcef. Reported-by: mathstuf Signed-off-by: Nicolas Sebrecht --- docs/doc-src/conf.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/doc-src/conf.py b/docs/doc-src/conf.py index 0886d4a..95cfb51 100644 --- a/docs/doc-src/conf.py +++ b/docs/doc-src/conf.py @@ -18,7 +18,7 @@ import sys, os # documentation root, use os.path.abspath to make it absolute, like shown here. sys.path.insert(0, os.path.abspath('../..')) -from offlineimap import __version__, __bigversion__, __author__, __copyright__ +from offlineimap import __version__, __author__, __copyright__ # -- General configuration ----------------------------------------------------- # Add any Sphinx extension module names here, as strings. They can be extensions @@ -50,7 +50,7 @@ copyright = __copyright__ # The short X.Y version. version = __version__ # The full version, including alpha/beta/rc tags. -release = __bigversion__ +release = __version__ # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages.