Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
pyromaths
pyromaths
Commits
8ca11b4b
Commit
8ca11b4b
authored
Sep 15, 2015
by
Louis
Browse files
Oubli du cas où `pipe` n'est pas défini.
parent
d1ab6cf3
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/pyromaths/outils/System.py
View file @
8ca11b4b
...
...
@@ -228,7 +228,7 @@ def creation(parametres):
if
parametres
[
'creer_pdf'
]:
from
subprocess
import
call
_preprocess_pipe
(
os
.
path
.
join
(
dir0
,
'{}.tex'
.
format
(
f0noext
)),
parametres
[
'pipe'
]
)
_preprocess_pipe
(
os
.
path
.
join
(
dir0
,
'{}.tex'
.
format
(
f0noext
)),
parametres
.
get
(
'pipe'
,
None
)
)
os
.
chdir
(
dir0
)
latexmkrc
(
f0noext
)
log
=
open
(
'%s-pyromaths.log'
%
f0noext
,
'w'
)
...
...
Write
Preview
Markdown
is supported
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