summaryrefslogtreecommitdiff
path: root/keystoneclient/utils.py
diff options
context:
space:
mode:
authorhuangtianhua <huangtianhua@huawei.com>2013-11-25 18:30:28 +0800
committerhuangtianhua <huangtianhua@huawei.com>2013-11-25 18:30:28 +0800
commit272fb6ac782fcb92b9444aa3e5f24bbba31ca2bb (patch)
tree495dc37ec0df055c79a81a9c429708ec54dbab35 /keystoneclient/utils.py
parentd55b2ba21df3e55632ecae69094d77b6e800db46 (diff)
downloadpython-keystoneclient-272fb6ac782fcb92b9444aa3e5f24bbba31ca2bb.tar.gz
Fix typo in keystoneclient
hypen-separated --> hyphen-separated initialzied --> initialized did't --> didn't sematics --> semantics Change-Id: I79841b76fdf7a267e325b8b9d917900ccb393c02 Closes-Bug: #1254660
Diffstat (limited to 'keystoneclient/utils.py')
-rw-r--r--keystoneclient/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/keystoneclient/utils.py b/keystoneclient/utils.py
index 6902ed3..e3a8466 100644
--- a/keystoneclient/utils.py
+++ b/keystoneclient/utils.py
@@ -25,7 +25,7 @@ from keystoneclient import exceptions
# Decorator for cli-args
def arg(*args, **kwargs):
def _decorator(func):
- # Because of the sematics of decorator composition if we just append
+ # Because of the semantics of decorator composition if we just append
# to the options list positional options will appear to be backwards.
func.__dict__.setdefault('arguments', []).insert(0, (args, kwargs))
return func