Python3 fixes
This commit is contained in:
parent
d3a81a32eb
commit
dbbad4d148
5 changed files with 5 additions and 5 deletions
|
@ -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'
|
||||||
|
|
||||||
|
|
|
@ -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'
|
||||||
|
|
||||||
|
|
2
conf.py
2
conf.py
|
@ -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 = [
|
||||||
|
|
|
@ -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'
|
||||||
|
|
||||||
|
|
|
@ -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'
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue