Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 1.0, 1.0.1, and 1.0.2

commit: extensions.find() can raise KeyError

Closes #905

Changeset 40bbef37cf1c

Parent aaa49d282253

by Steve Borho

Changes to one file · Browse files at 40bbef37cf1c Showing diff from parent aaa49d282253 Diff from another changeset...

 
142
143
144
145
 
 
 
 
146
147
148
 
142
143
144
 
145
146
147
148
149
150
151
@@ -142,7 +142,10 @@
  self.patch_text = None   self.qheader = None   self.runner = hgcmd.CmdRunner() - self.mqloaded = bool(extensions.find('mq')) + try: + self.mqloaded = bool(extensions.find('mq')) + except KeyError: + self.mqloaded = False     def get_help_url(self):   return 'commit.html'