From f22bfbda178b19179b85a31bce46702e3f497427 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mika=20M=C3=A4enp=C3=A4=C3=A4?= Date: Tue, 9 Dec 2014 12:18:23 +0200 Subject: [PATCH] Make sphinx-configuration work with python2 --- docs/conf.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 4db950d76..d7940c198 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -13,6 +13,8 @@ # All configuration values have a default; values that are commented out # serve to show the default. +from __future__ import unicode_literals + import sys import os import sphinx @@ -24,8 +26,6 @@ else: napoleon_version = "sphinx.ext.napoleon" -print(napoleon_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 # documentation root, use os.path.abspath to make it absolute, like shown here.