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: only perform overwrite confirmation when open = False

Fixes #685

Changeset dd6658a91ddf

Parent 7bb78ecb1b11

by Steve Borho

Changes to one file · Browse files at dd6658a91ddf Showing diff from parent 7bb78ecb1b11 Diff from another changeset...

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