Skip to content
Snippets Groups Projects
Commit a4f8ccd4 authored by Robert Butora's avatar Robert Butora
Browse files

fixes bug in extraCards CUNIT3 must be quoted if it has slash: m/s -> 'm/s'

parent aeb4fa91
Branches
No related tags found
No related merge requests found
......@@ -34,11 +34,11 @@ class FitsCard
{
if(csv_vel_unit.equals("m.s**-1"))
{
return new String("m/s");
return new String("'m/s'");
}
else if(csv_vel_unit.equals("km.s**-1"))
{
return new String("km/s");
return new String("'km/s'");
}
else
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment