10
0
mirror of https://github.com/LCPQ/QUESTDB_website.git synced 2024-07-22 18:57:38 +02:00

fix missing parenthesis

This commit is contained in:
Mickaël Véril 2020-07-06 10:28:59 +02:00
parent 57522d2627
commit 1593614d5f

View File

@ -99,7 +99,7 @@ class dataFileBase(object):
return lst
@staticmethod
def readFromTable(table,TexOps, commands=[]):
for formatName,Cls in getFormatHandlers:
for formatName,Cls in getFormatHandlers():
if formatName.lower()==TexOps.format.lower():
handler=Cls(TexOps,commands)
break