##// END OF EJS Templates
py3: shift from __future__ import absolute import to beginning (issue5269)
Pulkit Goyal -
r29385:aa1d5600 default
parent child Browse files
Show More
@@ -79,6 +79,8 b''
79 # - Restart the web server and see if things are running.
79 # - Restart the web server and see if things are running.
80 #
80 #
81
81
82 from __future__ import absolute_import
83
82 # Configuration file location
84 # Configuration file location
83 hgweb_config = r'c:\your\directory\wsgi.config'
85 hgweb_config = r'c:\your\directory\wsgi.config'
84
86
@@ -87,7 +89,6 b' path_strip = 0 # Strip this many path '
87 path_prefix = 1 # This many path elements are prefixes (depends on the
89 path_prefix = 1 # This many path elements are prefixes (depends on the
88 # virtual path of the IIS application).
90 # virtual path of the IIS application).
89
91
90 from __future__ import absolute_import
91 import sys
92 import sys
92
93
93 # Adjust python path if this is not a system-wide install
94 # Adjust python path if this is not a system-wide install
General Comments 0
You need to be logged in to leave comments. Login now