Skip to content

Commit f0ddcd5

Browse files
committed
Fix ST3 / py33 compatibility
1 parent 3da8a27 commit f0ddcd5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

latextools/utils/analysis.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ def filter_commands(self, how, flags=DEFAULT_FLAGS):
245245
elif callable(how):
246246
return (c for c in self._commands(flags) if how(c))
247247

248-
raise Exception(f"Unsupported filter type: {type(how)}")
248+
raise Exception("Unsupported filter type: {}".format(type(how)))
249249

250250
def graphics_paths(self):
251251
if self._graphics_path is None:

0 commit comments

Comments
 (0)