summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cinderclient/v3/volumes.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/cinderclient/v3/volumes.py b/cinderclient/v3/volumes.py
index 7c161bc..fac5eff 100644
--- a/cinderclient/v3/volumes.py
+++ b/cinderclient/v3/volumes.py
@@ -129,11 +129,11 @@ class VolumeManager(volumes.VolumeManager):
"""Revert a volume to a snapshot.
The snapshot must be the most recent one known to cinder.
- :param volume: volume object.
- :param snapshot: snapshot object.
+ :param volume: volume object or volume id.
+ :param snapshot: snapshot object or snapshot id.
"""
return self._action('revert', volume,
- info={'snapshot_id': base.getid(snapshot.id)})
+ info={'snapshot_id': base.getid(snapshot)})
@api_versions.wraps('3.12')
def summary(self, all_tenants):