Home | History | Annotate | Download | only in gitchangelog

Lines Matching refs:errlvl

366 def die(msg=None, errlvl=1):
369 sys.exit(errlvl)
374 def __init__(self, msg, errlvl=None, command=None, out=None, err=None):
375 self.errlvl = errlvl
802 """Wraps a shell command and casts an exception on unexpected errlvl
824 out, err, errlvl = cmd(command, env=env, shell=shell)
826 if errlvl not in ignore_errlvls:
841 % (command, errlvl, indent(msg, chars=" ")),
842 errlvl=errlvl,
1091 if e.errlvl != 128:
1120 if e.errlvl != 1:
1197 ... errlvl=1, out="", err="")
1230 if e.errlvl == 1 and e.out == "":