From 90f6b6cc860e618d87149253171263fd324f9f8c Mon Sep 17 00:00:00 2001 From: zengyingzhe Date: Tue, 1 Nov 2016 11:20:39 +0800 Subject: [PATCH] Fix a typo TrivialFix Change-Id: Ie8a4f21c902f5081823c28c5eb4b8cc975a3397c --- manila/api/v1/shares.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manila/api/v1/shares.py b/manila/api/v1/shares.py index 02afcb8733..f022c79058 100644 --- a/manila/api/v1/shares.py +++ b/manila/api/v1/shares.py @@ -251,7 +251,7 @@ class ShareMixin(object): if snapshot: # Need to check that share_network_id from snapshot's # parents share equals to share_network_id from args. - # If share_network_id is empty than update it with + # If share_network_id is empty then update it with # share_network_id of parent share. parent_share = self.share_api.get(context, snapshot['share_id']) parent_share_net_id = parent_share.instance['share_network_id']