Skip to content

Commit 4853e97

Browse files
committed
signtool: Improve error message
1 parent 7afb9c4 commit 4853e97

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

windows_tools/signtool/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ def sign(
190190
# Make sure we don't sign automatically in order to prevent an EV certificate token to be blocked because of bogus password attempts
191191
if os.path.isfile(dont_sign_file) and self.container_name:
192192
raise EnvironmentError(
193-
"File {} exists which says signature had errors. Won't sign anything unless file is deleted and issue resolved".format(
193+
"File {} exists which indicates signature process had errors. Since we want to avoid blocking the EV certificate because of bogus password attemtps, we won't sign anything unless the issue is resolved and the file is deleted manually".format(
194194
dont_sign_file
195195
)
196196
)

0 commit comments

Comments
 (0)