contrib/hgweb.fcgi
changeset 43659 99e231afc29c
parent 15475 85cba926cb59
child 45398 d58a205d0672
--- a/contrib/hgweb.fcgi	Tue Nov 12 10:17:59 2019 -0500
+++ b/contrib/hgweb.fcgi	Thu Nov 14 20:35:11 2019 -0800
@@ -7,13 +7,16 @@
 
 # Uncomment and adjust if Mercurial is not installed system-wide
 # (consult "installed modules" path from 'hg debuginstall'):
-#import sys; sys.path.insert(0, "/path/to/python/lib")
+# import sys; sys.path.insert(0, "/path/to/python/lib")
 
 # Uncomment to send python tracebacks to the browser if an error occurs:
-#import cgitb; cgitb.enable()
+# import cgitb; cgitb.enable()
 
-from mercurial import demandimport; demandimport.enable()
+from mercurial import demandimport
+
+demandimport.enable()
 from mercurial.hgweb import hgweb
 from flup.server.fcgi import WSGIServer
+
 application = hgweb(config)
 WSGIServer(application).run()