1 | initial version |
This looks like a locale problem to me. For example, LC_NUMERIC=es_ES.UTF-8
may mean the decimal point in 0.001 is being interpreted as a comma. Here's my locale:
LANG=
LC_CTYPE="C.UTF-8"
LC_NUMERIC="C.UTF-8"
LC_TIME="C.UTF-8"
LC_COLLATE="C.UTF-8"
LC_MONETARY="C.UTF-8"
LC_MESSAGES="C.UTF-8"
LC_ALL=
Maybe you could try changing your locale to see if that helps?