diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-08-26 02:08:37 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-08-26 02:08:37 +0300 |
commit | 484f822030b6097c4ea1819ae6170407c3153165 (patch) | |
tree | f375a9544d0e8943efc4162df15a7b06dd6e5364 | |
parent | 24847b70a23b97adaf113f1118222908151216d6 (diff) | |
download | evol-tools-484f822030b6097c4ea1819ae6170407c3153165.tar.gz evol-tools-484f822030b6097c4ea1819ae6170407c3153165.tar.bz2 evol-tools-484f822030b6097c4ea1819ae6170407c3153165.tar.xz evol-tools-484f822030b6097c4ea1819ae6170407c3153165.zip |
servergreps: remove unused variables.
-rwxr-xr-x | servergreps/hercules/packets.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/servergreps/hercules/packets.py b/servergreps/hercules/packets.py index d5944fe..cf3c0f6 100755 --- a/servergreps/hercules/packets.py +++ b/servergreps/hercules/packets.py @@ -251,7 +251,6 @@ def printPackets(packetDir): w.write("\n") funcDict = dict() - forRemove = [] for packet in clientpacketsSorted: data = packet while data[0] == "0": @@ -264,7 +263,7 @@ def printPackets(packetDir): if packet not in clientPackets: w.write("Useless packet {0}.\n".format(packet)) - manaplusFunc = set() +# manaplusFunc = set() rev = [] with open(packetDir + "/clientpackets.txt", "w") as w: |