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.
1 parent 5f6a39f commit 2ac965cCopy full SHA for 2ac965c
doc/make.py
@@ -25,7 +25,7 @@ def latex():
25
26
os.chdir('../..')
27
else:
28
- print 'latex build has not been tested on windows'
+ print('latex build has not been tested on windows')
29
30
def clean():
31
shutil.rmtree('build')
@@ -48,7 +48,7 @@ def all():
48
func = funcd.get(arg)
49
if func is None:
50
raise SystemExit('Do not know how to handle %s; valid args are'%(
51
- arg, funcd.keys()))
+ arg, list(funcd.keys())))
52
func()
53
54
all()
0 commit comments