Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 2.1, 2.1.1, and 2.1.2

hglib: return result of wrapped dispatch calls

fixes my c4a0fc68dc0b

Changeset a6ed16e96a4a

Parent c4a0fc68dc0b

by Adrian Buehlmann

Changes to one file · Browse files at a6ed16e96a4a Showing diff from parent c4a0fc68dc0b Diff from another changeset...

 
715
716
717
718
 
719
720
721
 
 
715
716
717
 
718
719
720
 
721
@@ -715,7 +715,7 @@
  if hasattr(hgdispatch, 'request'):   # hg >= 1.9, see mercurial changes 08bfec2ef031, 80c599eee3f3   req = hgdispatch.request(args, ui) - hgdispatch._dispatch(req) + return hgdispatch._dispatch(req)   else:   # hg <= 1.8 - hgdispatch._dispatch(ui, args) + return hgdispatch._dispatch(ui, args)