3131
3232
3333class CreateVolumeSnapshot (command .ShowOne ):
34- """ Create new volume snapshot"""
34+ _description = _ ( " Create new volume snapshot")
3535
3636 def get_parser (self , prog_name ):
3737 parser = super (CreateVolumeSnapshot , self ).get_parser (prog_name )
@@ -84,7 +84,7 @@ def take_action(self, parsed_args):
8484
8585
8686class DeleteVolumeSnapshot (command .Command ):
87- """ Delete volume snapshot(s)"""
87+ _description = _ ( " Delete volume snapshot(s)")
8888
8989 def get_parser (self , prog_name ):
9090 parser = super (DeleteVolumeSnapshot , self ).get_parser (prog_name )
@@ -119,7 +119,7 @@ def take_action(self, parsed_args):
119119
120120
121121class ListVolumeSnapshot (command .Lister ):
122- """ List volume snapshots"""
122+ _description = _ ( " List volume snapshots")
123123
124124 def get_parser (self , prog_name ):
125125 parser = super (ListVolumeSnapshot , self ).get_parser (prog_name )
@@ -220,7 +220,7 @@ def _format_volume_id(volume_id):
220220
221221
222222class SetVolumeSnapshot (command .Command ):
223- """ Set volume snapshot properties"""
223+ _description = _ ( " Set volume snapshot properties")
224224
225225 def get_parser (self , prog_name ):
226226 parser = super (SetVolumeSnapshot , self ).get_parser (prog_name )
@@ -281,7 +281,7 @@ def take_action(self, parsed_args):
281281
282282
283283class ShowVolumeSnapshot (command .ShowOne ):
284- """ Display volume snapshot details"""
284+ _description = _ ( " Display volume snapshot details")
285285
286286 def get_parser (self , prog_name ):
287287 parser = super (ShowVolumeSnapshot , self ).get_parser (prog_name )
@@ -305,7 +305,7 @@ def take_action(self, parsed_args):
305305
306306
307307class UnsetVolumeSnapshot (command .Command ):
308- """ Unset volume snapshot properties"""
308+ _description = _ ( " Unset volume snapshot properties")
309309
310310 def get_parser (self , prog_name ):
311311 parser = super (UnsetVolumeSnapshot , self ).get_parser (prog_name )
0 commit comments