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
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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
      {