summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNoorul Islam K M <noorul@noorul.com>2013-11-28 09:56:10 +0530
committerNoorul Islam K M <noorul@noorul.com>2013-11-28 09:56:10 +0530
commit1bd02bdcd8c023bd8d72a2349021126f95153beb (patch)
tree6db07d3c6b472c6052bbb0bec882c250c8550310
parent4e6e9eb2c7b846aae1a2d4f89a26846146eef70c (diff)
downloadoslo-middleware-1bd02bdcd8c023bd8d72a2349021126f95153beb.tar.gz
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
-rw-r--r--openstack/common/middleware/base.py1
-rw-r--r--openstack/common/middleware/debug.py1
-rw-r--r--openstack/common/middleware/sizelimit.py1
3 files changed, 3 insertions, 0 deletions
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.