Add @todo as the cli example so the test does not fails and it does not get forgotten.

This commit is contained in:
Pedro Algarvio 2013-02-17 13:23:14 +00:00
parent 356e299f8e
commit ea1ffdd245

View File

@ -49,7 +49,10 @@ def make_image(location, size, fmt):
def nbd_connect(image):
'''
Activate nbd for an image file
Activate nbd for an image file.
CLI Example::
@todo
'''
if not os.path.isfile(image):
return ''
@ -140,6 +143,9 @@ def bootstrap(location, size, fmt):
fmt:
The image format, raw or qcow2
CLI Example::
@todo
'''
location = make_image(location, size, fmt)
if not location: