Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 1.9.2, 1.9.3, and 2.0

thgrepo: strip 'hgext.' from extension names

This format has been supported by Mercurial for a long time, and has been
deprecated for nearly as long.

Changeset 857e4c7ec79e

Parent e14c65091ba0

by Steve Borho

Changes to one file · Browse files at 857e4c7ec79e Showing diff from parent e14c65091ba0 Diff from another changeset...

 
300
301
302
 
 
303
304
305
 
300
301
302
303
304
305
306
307
@@ -300,6 +300,8 @@
  allexts = [n for n,m in extensions.extensions()]   for name, path in self.ui.configitems('extensions'):   if name in allexts: + if name.startswith('hgext.'): + name = name[6:]   lclexts.append(name)   return lclexts