summaryrefslogtreecommitdiffstats
path: root/nova/utils.py
diff options
context:
space:
mode:
authorArmando Migliaccio <armando.migliaccio@citrix.com>2010-11-17 18:33:47 +0000
committerArmando Migliaccio <armando.migliaccio@citrix.com>2010-11-17 18:33:47 +0000
commite0ad4e8dd9f73c3c1e775f3deebe5a08f2321ac6 (patch)
treead3a30ad0068dab59c09f1da2799266bb859ed2e /nova/utils.py
parent0c19386f7c4ca063edbf8c10ffb86b399884e457 (diff)
parent551fd309fcbfedb99555a81fac6a40f003598fd6 (diff)
downloadnova-e0ad4e8dd9f73c3c1e775f3deebe5a08f2321ac6.tar.gz
nova-e0ad4e8dd9f73c3c1e775f3deebe5a08f2321ac6.tar.xz
nova-e0ad4e8dd9f73c3c1e775f3deebe5a08f2321ac6.zip
merged with trunk
Diffstat (limited to 'nova/utils.py')
-rw-r--r--nova/utils.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/nova/utils.py b/nova/utils.py
index d7ebe5b4c..2970b93bb 100644
--- a/nova/utils.py
+++ b/nova/utils.py
@@ -233,10 +233,3 @@ def utf8(value):
return value.encode("utf-8")
assert isinstance(value, str)
return value
-
-def fix_wsgify_docstr(wsgified_func):
- """A decorator to re-assign docstrings that webob.dec.wsgify clobbers."""
- @functools.wraps(wsgified_func.func)
- def _f(*args, **kwargs):
- wsgified_func(*args, **kwargs)
- return _f