-
Notifications
You must be signed in to change notification settings - Fork 60
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Not tolerant to null object input #14
Comments
I started today working with this library and this was my first error. Not good! Any way to correct this? |
Same problem here, please fix this! |
I think it happened when the value at last column is null, otherwise the cell with null value will merged into its next right cell. |
@andy176631 That was indeed the case. The pull request should fix this behaviour. |
@vdmeer Can you say if this project is dead? I don't ask you to do something, please, just answer, it won't take much time. |
This is not a bug. Null is used as HTML colspan. If you have null in one row, then at least in one row you must have a non null value. Compare:
|
Wrote a small program to fill a table from objects. Strings in the objects can be
null
, but then asciitable crashes:I currently work around this in my code with
The text was updated successfully, but these errors were encountered: