Merge branch 'master' of git://git.assembla.com/fpdb
Conflicts: pyfpdb/FulltiltToFpdb.py
This commit is contained in:
@@ -201,11 +201,14 @@ class Fulltilt(HandHistoryConverter):
|
||||
return None
|
||||
hand.handid = m.group('HID')
|
||||
hand.tablename = m.group('TABLE')
|
||||
|
||||
try:
|
||||
hand.startTime = datetime.datetime.strptime(m.group('DATETIME'), "%H:%M:%S ET - %Y/%m/%d")
|
||||
except:
|
||||
hand.startTime = datetime.datetime.strptime(m.group('DATETIME'), "%H:%M ET - %a, %B %d, %Y")
|
||||
|
||||
hand.startTime = HandHistoryConverter.changeTimezone(hand.startTime, "ET", "UTC")
|
||||
|
||||
if m.group("CANCELLED") or m.group("PARTIAL"):
|
||||
raise FpdbParseError(hid=m.group('HID'))
|
||||
|
||||
|
||||
+1
-1
@@ -117,7 +117,7 @@ import Configuration
|
||||
import Exceptions
|
||||
import Stats
|
||||
|
||||
VERSION = "0.20 plus git"
|
||||
VERSION = "0.20.1 plus git"
|
||||
|
||||
|
||||
class fpdb:
|
||||
|
||||
Reference in New Issue
Block a user