add a couple of missing commas

This commit is contained in:
eblade 2009-02-23 07:56:33 -05:00
parent 4a12d5e9a7
commit b2ee8fa0ce

View File

@ -55,8 +55,8 @@ class Everleaf(HandHistoryConverter):
self.re_SitsOut = re.compile(r"^%s sits out" % player_re, re.MULTILINE)
def readSupportedGames(self):
return [["ring", "hold", "nl"]
["ring", "hold", "pl"]
return [["ring", "hold", "nl"],
["ring", "hold", "pl"],
["ring", "omaha", "pl"]
]