From 1bd02bdcd8c023bd8d72a2349021126f95153beb Mon Sep 17 00:00:00 2001 From: Noorul Islam K M Date: Thu, 28 Nov 2013 09:56:10 +0530 Subject: Trivial: Make vertical white space after license header consistent Vertical white space between license header and the actual code is not consistent across files. It looks like majority of the files leaves a single blank line after license header. So make it consistent except for those exceptional cases where the actual code starts with a function or class definition. Change-Id: If6679ab19dc2d7a9df93e076db3019abc1e5b86b --- openstack/common/middleware/base.py | 1 + openstack/common/middleware/debug.py | 1 + openstack/common/middleware/sizelimit.py | 1 + 3 files changed, 3 insertions(+) diff --git a/openstack/common/middleware/base.py b/openstack/common/middleware/base.py index 2099549..464a1cc 100644 --- a/openstack/common/middleware/base.py +++ b/openstack/common/middleware/base.py @@ -12,6 +12,7 @@ # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations # under the License. + """Base class(es) for WSGI Middleware.""" import webob.dec diff --git a/openstack/common/middleware/debug.py b/openstack/common/middleware/debug.py index f0f6b90..c8538c7 100644 --- a/openstack/common/middleware/debug.py +++ b/openstack/common/middleware/debug.py @@ -12,6 +12,7 @@ # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations # under the License. + """Debug middleware""" from __future__ import print_function diff --git a/openstack/common/middleware/sizelimit.py b/openstack/common/middleware/sizelimit.py index aa2e889..0ec8fc7 100644 --- a/openstack/common/middleware/sizelimit.py +++ b/openstack/common/middleware/sizelimit.py @@ -11,6 +11,7 @@ # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations # under the License. + """ Request Body limiting middleware. -- cgit v1.2.1