Skip to content

Commit 01ab6e4

Browse files
committed
Bugfix
1 parent 9d661ab commit 01ab6e4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

benchexec/tools/ultimate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ def _query_ultimate_version(self, cmd, api):
164164
@functools.lru_cache
165165
def _get_current_launcher_jar(self, executable):
166166
ultimate_dir = os.path.dirname(executable)
167-
launcher_candidates = glob(_JAR_LAUNCHER_PATTERN, root_dir=ultimate_dir)
167+
launcher_candidates = glob.glob(_JAR_LAUNCHER_PATTERN, root_dir=ultimate_dir)
168168
if not launcher_candidates:
169169
raise FileNotFoundError(f"No suitable launcher jar found in {ultimate_dir}")
170170
if len(launcher_candidates) > 1:

0 commit comments

Comments
 (0)