GNOME Bugzilla – Bug 795408
problem with ssconvert with option --merge-to
Last modified: 2018-04-20 20:53:53 UTC
when I run ssconvert --merge-to=output.xls file1.csv file2.csv I get error message : (ssconvert:8373): GLib-CRITICAL **: 18:02:42.884: g_hash_table_foreach: assertion 'version == hash_table->version' failed
Confirmed. That used to work.
This problem has been fixed in our software repository. The fix will go into the next software release. Once that release is available, you may want to check for a software upgrade provided by your Linux distribution.
That warning relates to defined names and in your usage example can be ignored.
Is there a way to suppress temporarily ( until the next release) the printing of warnings? ( sorry my programming literacy is limited)
Not easily, but you can ignore them after the fact: ssconvert --merge-to=output.xls file1.csv file2.csv 2>&1 | grep . | grep -v 'version == hash_table->version'