From 8f60be27308be8deebf5b3ddddb67d480a05f3b1 Mon Sep 17 00:00:00 2001 From: Alice Ferrazzi Date: Mon, 7 Aug 2017 01:42:21 +0900 Subject: renamed function --- elivepatch_client/client/checkers.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/elivepatch_client/client/checkers.py b/elivepatch_client/client/checkers.py index 648c80f..61e9a02 100644 --- a/elivepatch_client/client/checkers.py +++ b/elivepatch_client/client/checkers.py @@ -57,7 +57,7 @@ class Kernel(object): print('gz extension') # uncompress the gzip config file # return configuration temporary folder - temporary_config = f_action.ungz(temporary_config) + temporary_config = f_action.decompress_gz(temporary_config) else: # read already uncompressed configuration with open(self.config_fullpath, 'rb') as in_file: @@ -107,7 +107,7 @@ class FileAction(object): self.full_path = full_path pass - def ungz(self, temporary): + def decompress_gz(self, temporary): """ Uncompress gzipped configuration :return: Uncompressed configuration file path -- cgit v1.2.3-65-gdbad