Disabled one of the sanity checks, it doesn't work well after the bank fixed another bug. ~enleth

master
Kasownik 2017-08-01 09:42:16 +02:00
parent e8e0d1a154
commit 934845032b
1 changed files with 2 additions and 2 deletions

View File

@ -187,8 +187,8 @@ class IBParser(object):
def parse(self, snapshot):
kek = u"IMPLR - STARVING - SKŁADKA ;".encode("utf-8")
if snapshot.find(kek) == -1:
raise IBParseError("double ; not found, format changed?")
#if snapshot.find(kek) == -1:
# raise IBParseError("double ; not found, format changed?")
snapshot = snapshot.replace(kek, kek[:-1])
lines = snapshot.splitlines()
header = lines.pop(0).decode("utf-8").split(";")