mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-22 21:00:22 -07:00
Fix undefined variables, basestring usage, and some associated python3 issues
This commit is contained in:
parent
9f7b0dfc30
commit
225fa5d092
84 changed files with 652 additions and 963 deletions
|
@ -398,7 +398,7 @@ class BaseManager(object):
|
|||
|
||||
def wait_for_rest_api_restart(self):
|
||||
time.sleep(5)
|
||||
for x in xrange(0, 60):
|
||||
for x in range(0, 60):
|
||||
try:
|
||||
self.client.reconnect()
|
||||
break
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue