Fixed a timezone issue in storeSessionsCache

This commit is contained in:
Chaz Littlejohn
2011-03-23 19:27:55 +00:00
parent dd6ce46487
commit 3ac088b748
2 changed files with 5 additions and 1 deletions
+1 -1
View File
@@ -475,7 +475,7 @@ class Importer:
hand = phands[i]
try:
id = hand.getHandId(self.database, id)
sc, gsc = hand.updateSessionsCache(self.database, sc, gsc, self.tz, doinsert)
sc, gsc = hand.updateSessionsCache(self.database, sc, gsc, None, doinsert)
hbulk = hand.insertHands(self.database, hbulk, doinsert)
hcbulk = hand.updateHudCache(self.database, hcbulk, doinsert)
ihands.append(hand)