|
@@ -486,7 +486,8 @@ class CheckListExtension(wx.ListCtrl, listmix.ListCtrlAutoWidthMixin, listmix.Ch
|
|
|
for ext in RunCommand('g.extension',
|
|
|
quiet = True, parent = self, read = True,
|
|
|
flags = 'a').splitlines():
|
|
|
- self.InsertStringItem(sys.maxint, ext)
|
|
|
+ if ext:
|
|
|
+ self.InsertStringItem(sys.maxint, ext)
|
|
|
|
|
|
def GetExtensions(self):
|
|
|
"""!Get extensions to be un-installed
|