Skip to content

Commit 2ac965c

Browse files
authored
port doc/make.py to py3k
1 parent 5f6a39f commit 2ac965c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

doc/make.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def latex():
2525

2626
os.chdir('../..')
2727
else:
28-
print 'latex build has not been tested on windows'
28+
print('latex build has not been tested on windows')
2929

3030
def clean():
3131
shutil.rmtree('build')
@@ -48,7 +48,7 @@ def all():
4848
func = funcd.get(arg)
4949
if func is None:
5050
raise SystemExit('Do not know how to handle %s; valid args are'%(
51-
arg, funcd.keys()))
51+
arg, list(funcd.keys())))
5252
func()
5353
else:
5454
all()

0 commit comments

Comments
 (0)