4673937fdcb248168fdc25d49b74c5c8f35eed63,modules/Gyoi_Creator.py,Creator,decompress_file,#Creator#,194
Before Change
print("Decompress {}".format(target))
self.extract_tar(target_path, extract_path)
elif ".zip" in target:
print("Decompress {}".format(target))
self.extract_zip(target_path, extract_path)
except Exception as e:
print("{}".format(e.args))
After Change
try:
// Execute extraction.
if ".tar" in package_path:
self.utility.print_message(OK, "Decompress... : {}".format(package_path))
self.extract_tar(package_path, extract_dir_name)
elif ".zip" in package_path:
self.utility.print_message(OK, "Decompress... : {}".format(package_path))
self.extract_zip(package_path, extract_dir_name)
except Exception as e:
self.utility.print_exception(e, "{}".format(e.args))
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 5
Instances
Project Name: gyoisamurai/GyoiThon
Commit Name: 4673937fdcb248168fdc25d49b74c5c8f35eed63
Time: 2019-03-13
Author: gyoiler3@gmail.com
File Name: modules/Gyoi_Creator.py
Class Name: Creator
Method Name: decompress_file
Project Name: gyoisamurai/GyoiThon
Commit Name: 4673937fdcb248168fdc25d49b74c5c8f35eed63
Time: 2019-03-13
Author: gyoiler3@gmail.com
File Name: modules/Gyoi_Creator.py
Class Name: Creator
Method Name: decompress_file
Project Name: gyoisamurai/GyoiThon
Commit Name: cb54672c91f92d68179b2bdcfeb617f6bef9f390
Time: 2018-08-20
Author: gyoiler3@gmail.com
File Name: gyoithon.py
Class Name:
Method Name: identify_product
Project Name: gyoisamurai/GyoiThon
Commit Name: 544ab0de99b3d54c297c070c89817b9f17e5ce86
Time: 2018-11-20
Author: gyoiler3@gmail.com
File Name: modules/Gyoi_Censys.py
Class Name: Censys
Method Name: search_censys