Fix wrong log output in nova/nova/tests/unit/fake_volume.py

Fix typo. "beging detaching volume ..."  ->  "begin detaching volume ..."

Change-Id: I4575238c3eb5971b76fba318e52c858f011683d2
Closes-Bug: #1429759
This commit is contained in:
Mitsuhiro SHIGEMATSU 2015-03-09 18:00:46 +09:00 committed by SHIGEMATSU Mitsuhiro
parent 4103a86f30
commit 02a1d6a042
1 changed files with 1 additions and 1 deletions

View File

@ -279,7 +279,7 @@ class API(object):
volume['status'] = 'available'
def begin_detaching(self, context, volume_id):
LOG.info('beging detaching volume %s', volume_id)
LOG.info('begin detaching volume %s', volume_id)
volume = self.get(context, volume_id)
volume['status'] = 'detaching'