Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.9, 0.9.1, and 0.9.1.1

stable gtklib: safely catch canceled save dialogs

Changeset 7309a8ee1daf

Parent a340ec303a12

by Steve Borho

Changes to one file · Browse files at 7309a8ee1daf Showing diff from parent a340ec303a12 Diff from another changeset...

 
166
167
168
169
 
 
 
 
170
171
172
 
166
167
168
 
169
170
171
172
173
174
175
@@ -166,7 +166,10 @@
  filepath = self.runWindows()   except ImportError:   filepath = self.runCompatible() - return self.overwriteConfirmation(filepath) + if filepath: + return self.overwriteConfirmation(filepath) + else: + return False     def runWindows(self):