def __get_report_hashes(report): hash_val = ReportWorker.parse_string_report(report, "(Hash=", ")") hash_val = hash_val.split(".") return hash_val[0], hash_val[1]
def __get_short_description(report): return ReportWorker.parse_string_report(report, "Short Description: ", "\r")
def __get_report_hashes(report): hash_val = ReportWorker.parse_string_report(report, "(Hash=", ")") hash_val = hash_val.split('.') return hash_val[0], hash_val[1]