CalledProcessError |
Python 3.12.3: /usr/bin/python3 Fri Apr 4 03:45:49 2025 |
A problem occurred in a Python script. Here is the sequence of function calls leading up to the error, in the order they occurred.
/usr/lib/cgi-bin/lincmd.cgi in <module> |
56 print('<h3>The output of your command "<FONT color=#008500><B>{}</B></FONT>" is:</h3>'.format(mycmd)) |
57 #result2 = subprocess.run("ls -l", shell=True, check=True, stdout=subprocess.PIPE) |
=> 58 result2 = subprocess.run(mycmd, shell=True, check=True, stdout=subprocess.PIPE) |
59 #print('<PRE>' + result2.stdout.decode() + '</PRE>') |
60 line = result2.stdout.decode() |
result2 undefined, subprocess = <module 'subprocess' from '/usr/lib/python3.12/subprocess.py'>, subprocess.run = <function run>, mycmd = 'pg /etc/hosts', shell undefined, check undefined, stdout undefined, subprocess.PIPE = -1 |
/usr/lib/python3.12/subprocess.py in run(input=None, capture_output=False, timeout=None, check=True, *popenargs=('pg /etc/hosts',), **kwargs={'shell': True, 'stdout': -1}) |
569 retcode = process.poll() |
570 if check and retcode: |
=> 571 raise CalledProcessError(retcode, process.args, |
=> 572 output=stdout, stderr=stderr) |
573 return CompletedProcess(process.args, retcode, stdout, stderr) |
global CalledProcessError = <class 'subprocess.CalledProcessError'>, retcode = 127, process = <Popen: returncode: 127 args: 'pg /etc/hosts'>, process.args = 'pg /etc/hosts', output undefined, stdout = b'', stderr = None |
CalledProcessError: Command 'pg /etc/hosts' returned non-zero exit status 127.
add_note =
<built-in method add_note of CalledProcessError object>
args =
(127, 'pg /etc/hosts')
cmd =
'pg /etc/hosts'
output =
b''
returncode =
127
stderr =
None
stdout =
b''
with_traceback =
<built-in method with_traceback of CalledProcessError object>