Added transfer type 958 (BlueCash)

master
Kasownik 2015-11-21 00:17:35 +01:00 committed by Remigiusz Marcinkiewicz
parent 27c5078e2e
commit 7a0f53b3b9
1 changed files with 2 additions and 1 deletions

View File

@ -42,7 +42,7 @@ class BREParseError(Exception):
class BRERow(object):
BRE_IN = [772, 773, 770, 968]
BRE_IN = [772, 773, 770, 968, 958]
SECRET = app.config["SECRET"]
def parse_data(self):
@ -111,6 +111,7 @@ class BREFetcher(object):
def _get(self, page):
url = self.BASE + page
#r = self.s.get(url,verify=app.config["BRE_CA_PATH"])
r = self.s.get(url)
print "[i] GET {} -> {}".format(page, r.status_code)
if r.status_code != 200: