summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMarkus Holtermann <info@markusholtermann.eu>2014-09-19 09:28:50 +0200
committerMarkus Holtermann <info@markusholtermann.eu>2014-09-19 09:28:50 +0200
commit36a62f1b62150951f8dc92a05f60778a3149409f (patch)
tree70bfd4a3bad1b4a7abcaee198db1bc4b974c47b6 /docs
parentbe42b26c469603b9f3de4aa558f5aed2df30c87e (diff)
downloadbvg-grabber-36a62f1b62150951f8dc92a05f60778a3149409f.tar.gz
bvg-grabber-36a62f1b62150951f8dc92a05f60778a3149409f.tar.bz2
bvg-grabber-36a62f1b62150951f8dc92a05f60778a3149409f.zip
Change version into a string
Diffstat (limited to 'docs')
-rw-r--r--docs/conf.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/conf.py b/docs/conf.py
index 949aee2..ec71904 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -17,7 +17,7 @@ import sys
sys.path.insert(0, os.path.join(os.path.dirname(__file__), '..'))
-from bvggrabber import get_version
+from bvggrabber import __version__
# If extensions (or modules to document with autodoc) are in another directory,
# add these directories to sys.path here. If the directory is relative to the
@@ -47,16 +47,16 @@ master_doc = 'index'
# General information about the project.
project = 'BVG-Grabber'
-copyright = '2013, Markus Holtermann, Christian Struck'
+copyright = '2013-2014, Markus Holtermann, Christian Struck'
# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
# built documents.
#
# The short X.Y version.
-version = get_version()
+version = __version__
# The full version, including alpha/beta/rc tags.
-release = get_version()
+release = __version__
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.