summaryrefslogtreecommitdiff
path: root/keystoneclient/utils.py
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2013-12-03 03:54:45 +0000
committerGerrit Code Review <review@openstack.org>2013-12-03 03:54:45 +0000
commit81460b55feb2ad4554a2dc466da3fbdb6919d9f8 (patch)
tree177a837a3667cd4c51081de536757505e8af7d86 /keystoneclient/utils.py
parentb6becd0492c0b12445999fdf608ecd6a61a62c32 (diff)
parent272fb6ac782fcb92b9444aa3e5f24bbba31ca2bb (diff)
downloadpython-keystoneclient-81460b55feb2ad4554a2dc466da3fbdb6919d9f8.tar.gz
Merge "Fix typo in keystoneclient"
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 400c401..a39af23 100644
--- a/keystoneclient/utils.py
+++ b/keystoneclient/utils.py
@@ -26,7 +26,7 @@ from keystoneclient.openstack.common import strutils
# 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