diff options
-rwxr-xr-x | src/op_mode/powerctrl.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/op_mode/powerctrl.py b/src/op_mode/powerctrl.py index d33f8633d..b2fb5fe5a 100755 --- a/src/op_mode/powerctrl.py +++ b/src/op_mode/powerctrl.py @@ -86,12 +86,12 @@ def cancel_shutdown(): if output and 'MODE' in output: timenow = datetime.now().strftime('%Y-%m-%d %H:%M:%S') try: - cmd('/sbin/shutdown -c --no-wall') + run('/sbin/shutdown -c --no-wall') except OSError as e: exit("Could not cancel a reboot or poweroff: %s" % e) - message = "Scheduled %s has been cancelled %s" % ( - output['MODE'], timenow) - run(f'wall {message}') + + message = 'Scheduled {} has been cancelled {}'.format(output['MODE'], timenow) + run(f'wall {message} > /dev/null 2>&1') else: print("Reboot or poweroff is not scheduled") |