summaryrefslogtreecommitdiff
path: root/source4
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2012-02-18 23:54:38 +0100
committerJelmer Vernooij <jelmer@samba.org>2012-02-18 23:54:38 +0100
commitc29e0258e0b9d4cbf05e1ff30f8787b314b23b04 (patch)
tree0fcc52b0079efa5acd62561d95177633a89b254f /source4
parente33441fafdc4421a88a6c48bf1bb06fee79f1ac7 (diff)
downloadsamba-c29e0258e0b9d4cbf05e1ff30f8787b314b23b04.tar.gz
samba-c29e0258e0b9d4cbf05e1ff30f8787b314b23b04.tar.bz2
samba-c29e0258e0b9d4cbf05e1ff30f8787b314b23b04.zip
samba.web_server: Fix use of whitespace.
Diffstat (limited to 'source4')
-rw-r--r--source4/scripting/python/samba/web_server/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/scripting/python/samba/web_server/__init__.py b/source4/scripting/python/samba/web_server/__init__.py
index da528f42d1..c05ca66ea3 100644
--- a/source4/scripting/python/samba/web_server/__init__.py
+++ b/source4/scripting/python/samba/web_server/__init__.py
@@ -24,7 +24,7 @@
def render_placeholder(environ, start_response):
status = '200 OK'
- response_headers = [('Content-type','text/html')]
+ response_headers = [('Content-type', 'text/html')]
start_response(status, response_headers)
yield "<!doctype html>\n"