Python3 fixes

This commit is contained in:
Alex Kirhenshtein 2017-11-23 13:10:51 +02:00
parent d3a81a32eb
commit dbbad4d148
5 changed files with 5 additions and 5 deletions

View file

@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
execfile('../conf.py')
exec(open("../conf.py").read())
# -- General -------------------------------------------------------------------
project = u'Administrator Guide'

View file

@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
execfile('../conf.py')
exec(open("../conf.py").read())
# -- General -------------------------------------------------------------------
project = u'Contept Guide'

View file

@ -7,7 +7,7 @@ import glob
from os.path import basename
# -- General configuration ------------------------------------------------
print os.path.abspath('../_lib')
print(os.path.abspath('../_lib'))
sys.path.insert(0, os.path.abspath('../_lib'))
extensions = [

View file

@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
execfile('../conf.py')
exec(open("../conf.py").read())
# -- General -------------------------------------------------------------------
project = u'Developer Guide'

View file

@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
execfile('../conf.py')
exec(open("../conf.py").read())
# -- General -------------------------------------------------------------------
project = u'man pages'