Merge branch 'master' of git://git.assembla.com/fpdb

Conflicts:
	pyfpdb/FulltiltToFpdb.py
This commit is contained in:
Worros
2010-07-22 10:49:22 +08:00
3 changed files with 65 additions and 1 deletions
+3
View File
@@ -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
View File
@@ -117,7 +117,7 @@ import Configuration
import Exceptions
import Stats
VERSION = "0.20 plus git"
VERSION = "0.20.1 plus git"
class fpdb: