mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-07 13:52:54 +00:00
Fix undefined variables, basestring usage, and some associated python3 issues
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user