Skip to content

Commit 7107847

Browse files
[binary_model] fix typo (#4160)
1 parent 29e8a3d commit 7107847

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

reference/conanfile/attributes/binary_model.inc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ It's also feasible to check the possible values defined in :ref:`reference_confi
9292
self.output.info(f"[HOST] Versions for {str(self.settings.compiler)}: {', '.join(compiler_versions)}")
9393
# Print the available versions for the compiler used by the BUILD profile
9494
compiler_versions = self.settings_build.compiler.version.possible_values()
95-
self.output.info(f"[BUILD] Versions for {str(self.settings.compiler)}: {', '.join(compiler_versions)}")
95+
self.output.info(f"[BUILD] Versions for {str(self.settings_build.compiler)}: {', '.join(compiler_versions)}")
9696

9797

9898
As you can see above, doing ``self.settings.possible_values()`` returns the

0 commit comments

Comments
 (0)