Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.3rc1, 0.3, and 0.4rc1

hggtk/commit: prevent backtrace if qct exits with no work

Changeset 66df8be3b1bf

Parent 227b3ad2f217

by Steve Borho

Changes to one file · Browse files at 66df8be3b1bf Showing diff from parent 227b3ad2f217 Diff from another changeset...

Change 1 of 1 Show Entire File hggtk/​commit.py Stacked
 
222
223
224
225
 
 
 
 
226
227
228
 
222
223
224
 
225
226
227
228
229
230
231
@@ -222,7 +222,10 @@
  if ct != 'internal':   from hglib import thgdispatch   args = ['--repository', root, ct] - ret = thgdispatch(repo.ui, args=args) + try: + ret = thgdispatch(repo.ui, args=args) + except SystemExit: + pass   return None     cmdoptions = {