diff options
-rw-r--r-- | elivepatch_client/client/checkers.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/elivepatch_client/client/checkers.py b/elivepatch_client/client/checkers.py index 0828525..79f45fa 100644 --- a/elivepatch_client/client/checkers.py +++ b/elivepatch_client/client/checkers.py @@ -43,7 +43,7 @@ class Kernel(object): def set_main_patch(self, main_patch_fullpath): self.main_patch_fullpath = main_patch_fullpath - def send_files(self, applied_patches_list): + def send_files(self, incremental_patches_list): """ Send config and patch files @@ -72,7 +72,7 @@ class Kernel(object): send_api = '/elivepatch/api/v1.0/get_files' # send uncompressed config and patch files fullpath - self.rest_manager.send_files(temporary_config, self.main_patch_fullpath, applied_patches_list, send_api) + self.rest_manager.send_files(temporary_config, self.main_patch_fullpath, incremental_patches_list, send_api) def build_livepatch(self): self.rest_manager.build_livepatch() |