diff options
author | Alice Ferrazzi <alicef@gentoo.org> | 2017-08-10 16:59:25 +0900 |
---|---|---|
committer | Alice Ferrazzi <alicef@gentoo.org> | 2017-08-10 16:59:25 +0900 |
commit | d6d03cd9e0bb070878667942d8fb808fae9b81a9 (patch) | |
tree | 5ddd1a8e75b5618ca9480ea0d699cc05d51351b8 | |
parent | fix pep-8 comment must start with '# ' (diff) | |
download | elivepatch-d6d03cd9e0bb070878667942d8fb808fae9b81a9.tar.gz elivepatch-d6d03cd9e0bb070878667942d8fb808fae9b81a9.tar.bz2 elivepatch-d6d03cd9e0bb070878667942d8fb808fae9b81a9.zip |
refactor variable name
-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() |