Thanks to visit codestin.com Credit goes to github.com
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.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
def check_for(texsystem): #<- different commands are asked for, but not actually checked below... header = """ \\documentclass{minimal} \\usepackage{pgf} \\begin{document} \\typeout{pgfversion=\\pgfversion} \\makeatletter \\@@end """ try: latex = subprocess.Popen(["xelatex", "-halt-on-error"], #<- why not texsystem? stdin=subprocess.PIPE, stdout=subprocess.PIPE) stdout, stderr = latex.communicate(header.encode("utf8")) except OSError: return False return latex.returncode == 0
Not sure if thats on purpose, but if so it should be documented...
The text was updated successfully, but these errors were encountered:
I think this is a bug. I have fixed it as part of #5727 which still waits for Travis to approve cm-super before it can be merged.
Sorry, something went wrong.
@pwuertz does the change in 7d67737 make sense to you?
Right, this is a bug/typo in check_for()
check_for()
fixed in #5727
No branches or pull requests
Not sure if thats on purpose, but if so it should be documented...
The text was updated successfully, but these errors were encountered: