We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5f6a39f + d561d8d commit a551c23Copy full SHA for a551c23
doc/make.py
@@ -1,4 +1,5 @@
1
#!/usr/bin/env python
2
+from __future__ import print_function
3
import fileinput
4
import glob
5
import os
@@ -25,7 +26,7 @@ def latex():
25
26
27
os.chdir('../..')
28
else:
- print 'latex build has not been tested on windows'
29
+ print('latex build has not been tested on windows')
30
31
def clean():
32
shutil.rmtree('build')
@@ -48,7 +49,7 @@ def all():
48
49
func = funcd.get(arg)
50
if func is None:
51
raise SystemExit('Do not know how to handle %s; valid args are'%(
- arg, funcd.keys()))
52
+ arg, list(funcd.keys())))
53
func()
54
55
all()
0 commit comments