mirror of
https://github.com/valitydev/salt.git
synced 2024-11-08 09:23:56 +00:00
Fix Python 3 compatibility
This commit is contained in:
parent
84d95aee13
commit
b85deb3092
@ -3,6 +3,8 @@
|
|||||||
Scaleway Cloud Module
|
Scaleway Cloud Module
|
||||||
==========================
|
==========================
|
||||||
|
|
||||||
|
.. versionadded:: Beryllium
|
||||||
|
|
||||||
The Scaleway cloud module is used to interact with your Scaleway BareMetal
|
The Scaleway cloud module is used to interact with your Scaleway BareMetal
|
||||||
Servers.
|
Servers.
|
||||||
|
|
||||||
@ -40,6 +42,7 @@ from salt.exceptions import (
|
|||||||
SaltCloudExecutionFailure,
|
SaltCloudExecutionFailure,
|
||||||
SaltCloudExecutionTimeout
|
SaltCloudExecutionTimeout
|
||||||
)
|
)
|
||||||
|
from salt.ext.six.moves import range
|
||||||
import salt.utils.cloud
|
import salt.utils.cloud
|
||||||
|
|
||||||
|
|
||||||
@ -454,7 +457,7 @@ def show_instance(name, call=None):
|
|||||||
|
|
||||||
|
|
||||||
def _get_node(name):
|
def _get_node(name):
|
||||||
for attempt in reversed(range(10)):
|
for attempt in reversed(list(range(10))):
|
||||||
try:
|
try:
|
||||||
return list_nodes_full()[name]
|
return list_nodes_full()[name]
|
||||||
except KeyError:
|
except KeyError:
|
||||||
|
Loading…
Reference in New Issue
Block a user