We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ab932cd commit a568e06Copy full SHA for a568e06
1 file changed
cppython/builder.py
@@ -245,12 +245,14 @@ def create_generator(
245
246
table = generator_configuration.get(name, {})
247
248
- if name not in generator_configuration.values():
+ if name not in generator_configuration.keys():
249
self.logger.error(
250
"The pyproject.toml table 'tool.cppython.generator.%s' does not exist. Sending generator empty data",
251
name,
252
)
253
254
+ self.logger.debug("The key '%s' does not found in these keys '%s'", name, generator_configuration.keys())
255
+
256
generator_data = resolve_generator(core_data.project_data)
257
258
cppython_plugin_data = resolve_cppython_plugin(core_data.cppython_data, supported_plugin_type)
0 commit comments