Add support for Python 2.6 in docs conf

This commit is contained in:
Jason R. Coombs
2017-01-24 20:59:15 -05:00
parent 21a4e86e6f
commit ee0d8647d8
2 changed files with 4 additions and 0 deletions

View File

@@ -5,6 +5,9 @@ import os
import sys
import subprocess
if 'check_output' not in dir(subprocess):
import subprocess32 as subprocess
extensions = [
'sphinx.ext.autodoc',
'rst.linker',