Skip to content

Commit

Permalink
Python 3.8 compilation fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tremble committed Jan 28, 2025
1 parent f27d872 commit c14f901
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion plugins/module_utils/_s3/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,9 @@ def _is_missing(cls):
@classmethod
def common_error_handler(cls, description):
def wrapper(func):
@super(S3ErrorHandler, cls).common_error_handler(description)
parent_class = super(S3ErrorHandler, cls)

@parent_class.common_error_handler(description)
@functools.wraps(func)
def handler(*args, **kwargs):
try:
Expand Down

0 comments on commit c14f901

Please sign in to comment.