Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Spot
Spot
Commits
0c3e10d1
Commit
0c3e10d1
authored
Jun 18, 2015
by
Alexandre Duret-Lutz
Browse files
ajax: fix Python3 error in check for ltl3ba
* wrap/python/ajax/spotcgi.in: Here.
parent
673eb44d
Changes
1
Show whitespace changes
Inline
Side-by-side
wrap/python/ajax/spotcgi.in
View file @
0c3e10d1
...
...
@@ -369,7 +369,7 @@ if output_type == 'v3':
# -M[0|1] is new in 1.1.1, and we use it.
l3proc
=
subprocess
.
Popen
([
'@LTL3BA@'
,
'-h'
],
stdout
=
subprocess
.
PIPE
)
(
out
,
err
)
=
l3proc
.
communicate
()
if
out
.
find
(
'-M['
)
<
0
:
if
out
.
find
(
b
'-M['
)
<
0
:
err
=
1
else
:
err
=
0
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment