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

update "this tabular is not supported" sentence

This commit is contained in:
Mickaël Véril 2019-11-18 09:33:02 +01:00
parent 332d73a3c0
commit aab078c44e

View File

@ -123,7 +123,7 @@ def tabularToData(table,commands=None):
#Check if all rows have the same dimension
slens=set(lens)
if(len(slens)!=1):
raise ValueError("This tabular is not supported because lines have not the same column numbers the culumns size are {}".format(lens))
raise ValueError("This tabular is not supported because lines have not the same column numbers for each row the coulumns numbers are {}".format(lens))
import numpy as np
table=np.array(lnewtable,TexNode)
return table