Carlos-Francisco Méndez-Cruz

Transform soft file in XML file

......@@ -85,7 +85,7 @@ if __name__ == "__main__":
content = content.replace(">", ">")
content = content.replace(""", "\"")
content = content.replace("'", "\'")
print("\nSerie: {}\tSample: {}\tTag: {}\tContent: {}".format(serie, sample, tag, content.encode(encoding='utf-8', errors='replace')))
#print("\nSerie: {}\tSample: {}\tTag: {}\tContent: {}".format(serie, sample, tag, content.encode(encoding='utf-8', errors='replace')))
if tag in hashGcs[serie][sample]:
if content in hashGcs[serie][sample][tag]:
print("Duplicated content: {}".format(content.encode(encoding='utf-8', errors='replace')))
......