From 0298433638bfe21b2d022ad4a4c96f6e9f4b8bc1 Mon Sep 17 00:00:00 2001 From: usmannasir Date: Sun, 13 Jul 2025 23:03:10 +0500 Subject: [PATCH] bug fix: https://github.com/usmannasir/cyberpanel/issues/1450 --- IncBackups/IncScheduler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/IncBackups/IncScheduler.py b/IncBackups/IncScheduler.py index 80c587150..4c4619b94 100644 --- a/IncBackups/IncScheduler.py +++ b/IncBackups/IncScheduler.py @@ -9,7 +9,7 @@ def main(): parser.add_argument('function', help='Specific a function to call!') args = parser.parse_args() - command = f"/usr/local/CyberCP/bin/python /usr/local/CyberCP/plogical/IncScheduler.py '{args.function}'" % () + command = f"/usr/local/CyberCP/bin/python /usr/local/CyberCP/plogical/IncScheduler.py '{args.function}'" ProcessUtilities.normalExecutioner(command)