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

wctxactions: provide better feedback for unimplemented menu options

Changeset 0d8a8870162f

Parent 950a3919c5d0

by Steve Borho

Changes to one file · Browse files at 0d8a8870162f Showing diff from parent 950a3919c5d0 Diff from another changeset...

 
91
92
93
 
 
 
94
95
96
 
91
92
93
94
95
96
97
98
99
@@ -91,6 +91,9 @@
  QMessageBox.critical(parent, name + _(' Aborted'), str(e))   except (error.LookupError), e:   QMessageBox.critical(parent, name + _(' Aborted'), str(e)) + except NotImplementedError: + QMessageBox.critical(parent, name + _(' not implemented'), + 'Please add it :)')   os.chdir(cwd)   return notify