Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 065ca41

Browse filesBrowse files
committed
BF: ensure exception caught if no kpeswitch
1 parent 3d75230 commit 065ca41
Copy full SHA for 065ca41

File tree

Expand file treeCollapse file tree

1 file changed

+1
-1
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+1
-1
lines changed

‎lib/matplotlib/dviread.py

Copy file name to clipboardExpand all lines: lib/matplotlib/dviread.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1081,7 +1081,7 @@ def find_tex_file(filename, format=None):
10811081
cmd += [filename]
10821082
try:
10831083
result = cbook._check_and_log_subprocess(cmd, _log, **kwargs)
1084-
except RuntimeError:
1084+
except (FileNotFoundError, RuntimeError):
10851085
return ''
10861086
return result.rstrip('\n')
10871087

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.