We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8161963 commit de5df86Copy full SHA for de5df86
1 file changed
labgrid/driver/powerdriver.py
@@ -504,7 +504,7 @@ def _ipmi_power(self, cmd):
504
runstr += f"-p {self.port.password} {cmd}"
505
runstr = runstr.split(' ')
506
if len(self.port.args) > 0:
507
- runstr.append(self.port.args)
+ runstr.extend(self.port.args.split(' '))
508
return subprocess.run(runstr, capture_output=True)
509
510
def _ipmi_cmd(self, cmd):
0 commit comments