Fix a codeblock in libcloud's Firstapp

Fixes syntax error in block_storage.rst so the code is actually inside
of the code block instead of coming after it.

Change-Id: I33d20835c7a51fda2dc26a5720efe27452ed6358
This commit is contained in:
Caleb Boylan
2015-10-08 09:27:58 -07:00
parent c7728c1bb2
commit 2f555d0e86

View File

@@ -236,8 +236,8 @@ create snapshots of volumes (handy for backups):
.. code-block:: python
* snapshot_name = 'test_backup_1'
connection.create_volume_snapshot('test', name='test backup 1')
snapshot_name = 'test_backup_1'
connection.create_volume_snapshot('test', name=snapshot_name)
.. todo:: Do we need a note here to mention that 'test' is the
volume name and not the volume object?