Skip to content

Commit b933fe7

Browse files
Fix error message for sonarqube-config (#232)
1 parent d56ab8c commit b933fe7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/usethis/_integrations/sonarqube/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ def get_sonar_project_properties() -> str:
3232
id_keys=["tool", "usethis", "sonarqube", "project-key"]
3333
)
3434
except (FileNotFoundError, KeyError):
35-
msg = "Could not find SonarQube project key at 'usethis.tool.sonarqube.project-key' in 'pyproject.toml'."
35+
msg = "Could not find SonarQube project key at 'tool.usethis.sonarqube.project-key' in 'pyproject.toml'."
3636
raise MissingProjectKeyError(msg)
3737
_validate_project_key(project_key)
3838

0 commit comments

Comments
 (0)