aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--elivepatch_client/client/checkers.py4
1 files 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