diff options
Diffstat (limited to 'pyLoadCore.py')
-rwxr-xr-x | pyLoadCore.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/pyLoadCore.py b/pyLoadCore.py index 17865bfe0..f792b610a 100755 --- a/pyLoadCore.py +++ b/pyLoadCore.py @@ -597,6 +597,9 @@ class ServerMethods(): def restart_package(self, packid): self.core.files.restartPackage(int(packid)) + def recheck_package(self, packid): + self.core.files.reCheckPackage(int(packid)) + def restart_file(self, fileid): self.core.files.restartFile(int(fileid)) |