Commit 551a2a19 authored by milafternoon's avatar milafternoon
Browse files

fix 4

parent 3a1e2235
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -110,14 +110,14 @@ class ModParam(Mod):
        """
        assert self.origpar
        result = ''
        fstring = '{:>5s} {:>5s} {:>5s} {:>5s} {:>5s}' + len(self.origpar) * '{:>14} \n'
        fstring = '{:>5s} {:>5s} {:>5s} {:>5s} {:>5s}' + 3 * '{:>14} ' + '\n'
        for par in self.origpar:
            cont_temp = cont_list[:]
            if (self.period and par[2] == self.period) or not self.period:
                par[1] = float(par[1]) + self.dpar
            cont_temp.extend(par)
            cont_temp.extend(par[:3])
            result += fstring.format(*cont_temp)
        return result.rstrip()
        return result

    def check_line(self, list_line_to_check, list_entries):
        """