diff options
Diffstat (limited to 'servergreps/hercules/src/reporter.py')
-rwxr-xr-x | servergreps/hercules/src/reporter.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/servergreps/hercules/src/reporter.py b/servergreps/hercules/src/reporter.py index 2d0b4c5..18caa5a 100755 --- a/servergreps/hercules/src/reporter.py +++ b/servergreps/hercules/src/reporter.py @@ -227,3 +227,10 @@ class Reporter: for packet in threeceam.outPacketsSorted: if packet not in hercules.packetsSet: w.write("Exists only in 3CeaM: " + packet + "\n") + + + def reportIdathena(self, hercules, idathena): + with open(self.packetDir + "/" + hercules.reportName + "_" + idathena.reportName + "_outpackets.txt", "w") as w: + for packet in idathena.outPacketsSorted: + if packet not in hercules.packetsSet: + w.write("Exists only in idAthena: " + packet + "\n") |