mercurial/dispatch.py
branchstable
changeset 17299 e51d4aedace9
parent 17228 d1b49b02bc16
child 17773 434e5bd615fc
--- a/mercurial/dispatch.py	Sat Jul 28 13:33:06 2012 +0200
+++ b/mercurial/dispatch.py	Tue Jul 31 03:30:42 2012 +0200
@@ -169,7 +169,7 @@
             try: # usually it is in the form (errno, strerror)
                 reason = inst.reason.args[1]
             except (AttributeError, IndexError):
-                 # it might be anything, for example a string
+                # it might be anything, for example a string
                 reason = inst.reason
             ui.warn(_("abort: error: %s\n") % reason)
         elif util.safehasattr(inst, "args") and inst.args[0] == errno.EPIPE: