##// END OF EJS Templates
extensions: use [0:1] slice on config path instead of [0]...
Augie Fackler -
r31264:063d7957 default
parent child Browse files
Show More
@@ -160,7 +160,7 b' def loadall(ui):'
160 newindex = len(_order)
160 newindex = len(_order)
161 for (name, path) in result:
161 for (name, path) in result:
162 if path:
162 if path:
163 if path[0] == '!':
163 if path[0:1] == '!':
164 _disabledextensions[name] = path[1:]
164 _disabledextensions[name] = path[1:]
165 continue
165 continue
166 try:
166 try:
General Comments 0
You need to be logged in to leave comments. Login now