Skip to content

Commit 4f244ad

Browse files
authored
Reword audit prompt message for clarity
The old audit prompt message was confusing in the case of a false positive. This new wording suits both genuine findings and false positives. Fixes #734
1 parent 5438d06 commit 4f244ad

File tree

1 file changed

+1
-1
lines changed
  • detect_secrets/audit

1 file changed

+1
-1
lines changed

detect_secrets/audit/io.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ def __init__(self, allow_labelling: bool, allow_backstep: bool) -> None:
130130

131131
def __str__(self) -> str:
132132
if 'Y' in self.valid_input:
133-
output = 'Is this a secret that should be committed to this repository?'
133+
output = 'Should this be committed to the repository?'
134134
else:
135135
output = 'What would you like to do?'
136136

0 commit comments

Comments
 (0)