Skip to content

Commit

Permalink
Further 2.7 python issues resolved
Browse files Browse the repository at this point in the history
  • Loading branch information
kavinagrawalcohesity committed May 13, 2024
1 parent 048f423 commit 028449e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
7 changes: 5 additions & 2 deletions plugins/module_utils/cohesity_hints.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,11 @@
#

from __future__ import absolute_import, division, print_function
from http.client import REQUEST_TIMEOUT

try:
from http.client import REQUEST_TIMEOUT
except:
from httplib import REQUEST_TIMEOUT

__metaclass__ = type

DOCUMENTATION = """
Expand Down
2 changes: 1 addition & 1 deletion plugins/modules/cohesity_oracle_source.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@
)
from cohesity_management_sdk.models.register_protection_source_parameters import (
RegisterProtectionSourceParameters,
)
)

except Exception:
pass
Expand Down

0 comments on commit 028449e

Please sign in to comment.