Skip to content

Commit

Permalink
Clean up log messages in pki pkcs12-import
Browse files Browse the repository at this point in the history
  • Loading branch information
edewata committed Jan 30, 2025
1 parent 3f3eedb commit 90701b9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions base/common/python/pki/cli/pkcs12.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,21 +118,21 @@ def execute(self, argv, args=None):
pkcs12_file = args.pkcs12

if args.pkcs12_file:
logger.warning('The --pkcs12-file option has been deprecated.'
logger.warning('The --pkcs12-file option has been deprecated. '
'Use --pkcs12 instead.')
pkcs12_file = args.pkcs12_file

pkcs12_password = args.password

if args.pkcs12_password:
logger.warning('The --pkcs12-password option has been deprecated.'
logger.warning('The --pkcs12-password option has been deprecated. '
'Use --password instead.')
pkcs12_password = args.pkcs12_password

password_file = args.password_file

if args.pkcs12_password_file:
logger.warning('The --pkcs12-password-file option has been deprecated.'
logger.warning('The --pkcs12-password-file option has been deprecated. '
'Use --password-file instead.')
password_file = args.pkcs12_password_file

Expand Down

0 comments on commit 90701b9

Please sign in to comment.