From f1df39fe7be45c9d789f7b889de35328158079c4 Mon Sep 17 00:00:00 2001
From: huangtianhua <huangtianhua@huawei.com>
Date: Mon, 25 Nov 2013 17:55:08 +0800
Subject: [PATCH] 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
---
 cinder/db/sqlalchemy/models.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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)
 
-- 
2.45.2