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 -*- # -*- coding: utf-8 -*-
execfile('../conf.py') exec(open("../conf.py").read())
# -- General ------------------------------------------------------------------- # -- General -------------------------------------------------------------------
project = u'Administrator Guide' project = u'Administrator Guide'

View file

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

View file

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

View file

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

View file

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