FTP: Allow # in tablename

This commit is contained in:
Worros 2011-03-25 13:14:26 +08:00
parent c0d8ff4638
commit b6ca0565ce

View File

@ -37,7 +37,7 @@ class Fulltilt(HandHistoryConverter):
substitutions = {
'LEGAL_ISO' : "USD|EUR|GBP|CAD|FPP", # legal ISO currency codes
'LS' : u"\$|\u20AC|\xe2\x82\xac|", # legal currency symbols - Euro(cp1252, utf-8)
'TAB' : u"-\u2013'\s\da-zA-Z", # legal characters for tablename
'TAB' : u"-\u2013'\s\da-zA-Z#", # legal characters for tablename
'NUM' : u".,\d", # legal characters in number format
}