Skip to content

Commit

Permalink
Fix linter
Browse files Browse the repository at this point in the history
  • Loading branch information
matejmatuska committed Jan 21, 2025
1 parent 948b4bb commit aea9f00
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions repos/system_upgrade/common/libraries/rhsm.py
Original file line number Diff line number Diff line change
Expand Up @@ -413,9 +413,11 @@ def is_rhsm_registered(context):
raise StopActorExecutionError(
message='A subscription-manager command failed to execute',
details={
'details': f'Command \'subscription-manager identity\' exited with exit code: {result["exit_code"]}',
'details': 'Command \'subscription-manager identity\' exited with exit code: {}'.format(
result["exit_code"]
),
'hint': _DEFAULT_EXCEPTION_HINT,
'link': 'https://access.redhat.com/solutions/6138372' # TODO check link
'link': 'https://access.redhat.com/solutions/6138372' # TODO check link
}
)

Expand Down

0 comments on commit aea9f00

Please sign in to comment.