diff options
Diffstat (limited to 'pyLoadCore.py')
-rwxr-xr-x | pyLoadCore.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/pyLoadCore.py b/pyLoadCore.py index aaa965901..8bd9a3995 100755 --- a/pyLoadCore.py +++ b/pyLoadCore.py @@ -550,7 +550,10 @@ class ServerMethods(): self.core.file_list.packager.abortFile(id) def update_available(self): - return self.core.update_available
+ return self.core.update_available + + def set_package_name(self, pid, name): + self.core.file_list.packager.setPackageData(pid, package_name=name)
#def move_urls_up(self, ids):
# for id in ids:
|