fix typo in sorted function call argument reverse

This commit is contained in:
MRocholl 2020-04-15 15:37:41 +02:00 committed by Wenzel Jakob
parent 9358e30d2a
commit b14aeb7cfa
1 changed files with 1 additions and 1 deletions

View File

@ -258,7 +258,7 @@ def read_args(args):
# versions and distributions. LLVM switched to a monolithical setup # versions and distributions. LLVM switched to a monolithical setup
# that includes everything under /usr/lib/llvm{version_number}/ # that includes everything under /usr/lib/llvm{version_number}/
# We therefore glob for the library and select the highest version # We therefore glob for the library and select the highest version
library_file = sorted(glob("/usr/lib/llvm-*/lib/libclang.so"), reversed=True)[0] library_file = sorted(glob("/usr/lib/llvm-*/lib/libclang.so"), reverse=True)[0]
cindex.Config.set_library_file(library_file) cindex.Config.set_library_file(library_file)
# clang doesn't find its own base includes by default on Linux, # clang doesn't find its own base includes by default on Linux,