Skip to content

Commit b14c5be

Browse files
committed
Fix Parameter
1 parent e213be0 commit b14c5be

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cppython/plugins/conan/plugin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ def _install_dependencies(self, *, update: bool = False) -> None:
8686
build_types = ['Release', 'Debug']
8787
for build_type in build_types:
8888
logger.info('Installing dependencies for build type: %s', build_type)
89-
self._run_conan_install(conanfile_path, update, logger, build_type)
89+
self._run_conan_install(conanfile_path, update, build_type, logger)
9090
except Exception as e:
9191
raise ProviderInstallationError('conan', f'Failed to install dependencies: {e}', e) from e
9292

0 commit comments

Comments
 (0)