Skip to content

Commit

Permalink
Fix typo in import private rsa key error message
Browse files Browse the repository at this point in the history
  • Loading branch information
lukpueh committed Mar 8, 2018
1 parent 33886e4 commit 4508a78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion securesystemslib/interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ def import_rsa_privatekey_from_file(filepath, password=None,

# TODO: PASSWORD_SCHEMA should be securesystemslib.schema.AnyString(min=1)
if not len(password):
raise ValueError('Password must be 1 or more charcters')
raise ValueError('Password must be 1 or more characters')

elif prompt:
# Password confirmation disabled here, which should ideally happen only
Expand Down

0 comments on commit 4508a78

Please sign in to comment.