style: adjust whitespaces in webutil.py
Turns out, all this came from the single d605a82cf189.
--- a/mercurial/hgweb/webutil.py Mon Aug 10 15:30:28 2015 -0500
+++ b/mercurial/hgweb/webutil.py Tue Aug 11 13:19:42 2015 +0800
@@ -203,7 +203,7 @@
path = path.lstrip('/')
return pathutil.canonpath(repo.root, '', path)
-def changeidctx (repo, changeid):
+def changeidctx(repo, changeid):
try:
ctx = repo[changeid]
except error.RepoError:
@@ -212,11 +212,11 @@
return ctx
-def changectx (repo, req):
+def changectx(repo, req):
changeid = "tip"
if 'node' in req.form:
changeid = req.form['node'][0]
- ipos=changeid.find(':')
+ ipos = changeid.find(':')
if ipos != -1:
changeid = changeid[(ipos + 1):]
elif 'manifest' in req.form:
@@ -227,7 +227,7 @@
def basechangectx(repo, req):
if 'node' in req.form:
changeid = req.form['node'][0]
- ipos=changeid.find(':')
+ ipos = changeid.find(':')
if ipos != -1:
changeid = changeid[:ipos]
return changeidctx(repo, changeid)