Skip to content

Commit

Permalink
changed kr to SEK
Browse files Browse the repository at this point in the history
  • Loading branch information
ChazDazzle committed Oct 17, 2023
1 parent 352bb15 commit 5d7c55e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyfpdb/iPokerSummary.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class iPokerSummary(TourneySummary):
'PLYR': r'(?P<PNAME>[^"]+)',
'NUM' : r'.,0-9',
}
currencies = { u'€':'EUR', '$':'USD', '':'T$', u'£':'GBP', 'RSD': 'RSD', 'kr': 'kr'}
currencies = { u'€':'EUR', '$':'USD', '':'T$', u'£':'GBP', 'RSD': 'RSD', 'kr': 'SEK'}

months = { 'Jan':1, 'Feb':2, 'Mar':3, 'Apr':4, 'May':5, 'Jun':6, 'Jul':7, 'Aug':8, 'Sep':9, 'Oct':10, 'Nov':11, 'Dec':12}

Expand Down
2 changes: 1 addition & 1 deletion pyfpdb/iPokerToFpdb.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ class iPoker(HandHistoryConverter):
'Omaha HiLow' : ('hold','omahahilo'),
}

currencies = { u'€':'EUR', '$':'USD', '':'T$', u'£':'GBP', 'RSD': 'RSD', 'kr': 'kr'}
currencies = { u'€':'EUR', '$':'USD', '':'T$', u'£':'GBP', 'RSD': 'RSD', 'kr': 'SEK'}

# translations from captured groups to fpdb info strings
Lim_Blinds = { '0.04': ('0.01', '0.02'), '0.08': ('0.02', '0.04'),
Expand Down

0 comments on commit 5d7c55e

Please sign in to comment.