From 2690a4e60476975a74b73006c76373e10438ddf5 Mon Sep 17 00:00:00 2001 From: Chmouel Boudjnah Date: Mon, 5 Aug 2013 09:28:47 +0000 Subject: [PATCH] Fix sphinx error in swift.common.utils - Error was swift/common/utils.py:docstring of swift.common.utils.parse_content_type:7: ERROR: Unexpected indentation. - Closes-Bug: #1208396 Change-Id: Ia0c095d1b0b202e99991aabdf96e12b52c922c5c --- swift/common/utils.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/swift/common/utils.py b/swift/common/utils.py index f12c8aeedc..3c8c3672fb 100644 --- a/swift/common/utils.py +++ b/swift/common/utils.py @@ -2224,7 +2224,8 @@ def parse_content_type(content_type): """ Parse a content-type and its parameters into values. RFC 2616 sec 14.17 and 3.7 are pertinent. - Examples: + + **Examples**:: 'text/plain; charset=UTF-8' -> ('text/plain', [('charset, 'UTF-8')]) 'text/plain; charset=UTF-8; level=1' ->