style: adjust whitespaces in webutil.py
authorAnton Shestakov <av6@dwimlabs.net>
Tue, 11 Aug 2015 13:19:42 +0800
changeset 25999 1c75249e159b
parent 25998 a7527c5769bb
child 26001 748053b4a66b
style: adjust whitespaces in webutil.py Turns out, all this came from the single d605a82cf189.
mercurial/hgweb/webutil.py
--- 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)