Skip to content
Snippets Groups Projects
Commit a41d7a1d authored by Stavros Sachtouris's avatar Stavros Sachtouris
Browse files

Fix some random spelling errors in commends

parent d1df42a7
No related branches found
No related tags found
No related merge requests found
......@@ -93,7 +93,7 @@ copyright = u'2013, GRNET'
# built documents.
#
# The short X.Y version.
version = '0.8'
version = '0.10'
# The full version, including alpha/beta/rc tags.
try:
import kamaki
......
......@@ -898,10 +898,12 @@ class image_compute_properties_set(_init_cyclades, _optional_json):
@errors.cyclades.connection
@errors.plankton.id
def _run(self, image_id, keyvals):
print keyvals
meta = dict()
for keyval in keyvals:
key, sep, val = keyval.partition('=')
meta[key] = val
print meta
self._print(
self.client.update_image_metadata(image_id, **meta), print_dict)
......
......@@ -41,7 +41,7 @@ class CLIError(Exception):
def __init__(self, message, details=[], importance=0):
"""
@message is the main message of the Error
@detauls is a list of previous errors
@defaults is a list of previous errors
@importance of the output for the user
Suggested values: 0, 1, 2, 3
"""
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment