From 5c6ee9511ce40a37b3b46da6fc20b2a99be4e199 Mon Sep 17 00:00:00 2001 From: Steven Silvester Date: Sat, 14 Mar 2015 10:39:25 -0500 Subject: [PATCH] Remove unnecessary sphinx version check --- doc/source/conf.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/doc/source/conf.py b/doc/source/conf.py index be2d0790..94904305 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -12,7 +12,6 @@ # serve to show the default. import sys, os -import sphinx # 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 @@ -51,10 +50,7 @@ else: templates_path = ['_templates'] # The suffix of source filenames. -if sphinx.__version__.startswith('1.3'): - source_suffix = ['.txt'] -else: - source_suffix = '.txt' +source_suffix = '.txt' # The encoding of source files. #source_encoding = 'utf-8-sig'