Skip to content

Commit

Permalink
Merge pull request #619 from eltimn/patch-1
Browse files Browse the repository at this point in the history
Fixed typo in docs
  • Loading branch information
briancurtin committed Oct 12, 2016
2 parents 1383655 + 7eefb41 commit 4401296
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/cloud_servers.md
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ You need to wait for the imaging to finish before you are able to clone it.
# Unlike the create_server() call, create_image() returns the id
# rather than an Image object.
image = cs.images.get(im)
image = pyrax.wait_until(image, "status", ["ACTIVE", "ERROR"], attempts=0)
image = pyrax.utils.wait_until(image, "status", ["ACTIVE", "ERROR"], attempts=0)
cs.servers.create(name="clone", image=image.id, flavor=my_flavor)


Expand Down

0 comments on commit 4401296

Please sign in to comment.