From: huangtianhua Date: Mon, 25 Nov 2013 09:55:08 +0000 (+0800) Subject: Fix docstring for Snapshot model X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=f1df39fe7be45c9d789f7b889de35328158079c4;p=openstack-build%2Fcinder-build.git Fix docstring for Snapshot model "Represents a block storage device that can be attached to a VM." as the description of model Snapshot is incorrect. Change-Id: I1d7c985869f0829b9305a18a3570928a9da40519 Closes-Bug: #1254635 --- diff --git a/cinder/db/sqlalchemy/models.py b/cinder/db/sqlalchemy/models.py index 66f44a40a..f4dd4249e 100644 --- a/cinder/db/sqlalchemy/models.py +++ b/cinder/db/sqlalchemy/models.py @@ -345,7 +345,7 @@ class Reservation(BASE, CinderBase): class Snapshot(BASE, CinderBase): - """Represents a block storage device that can be attached to a VM.""" + """Represents a snapshot of volume.""" __tablename__ = 'snapshots' id = Column(String(36), primary_key=True)