##// END OF EJS Templates
write to stderr with a single write call....
Benoit Boissinot -
r2134:ef81e34a default
parent child Browse files
Show More
@@ -3447,7 +3447,7 b' def dispatch(args):'
3447 u.warn(_("hg: unknown command '%s'\n") % inst.args[0])
3447 u.warn(_("hg: unknown command '%s'\n") % inst.args[0])
3448 help_(u, 'shortlist')
3448 help_(u, 'shortlist')
3449 except hg.RepoError, inst:
3449 except hg.RepoError, inst:
3450 u.warn(_("abort: "), inst, "!\n")
3450 u.warn(_("abort: %s!\n") % inst)
3451 except lock.LockHeld, inst:
3451 except lock.LockHeld, inst:
3452 if inst.errno == errno.ETIMEDOUT:
3452 if inst.errno == errno.ETIMEDOUT:
3453 reason = _('timed out waiting for lock held by %s') % inst.locker
3453 reason = _('timed out waiting for lock held by %s') % inst.locker
General Comments 0
You need to be logged in to leave comments. Login now