Commit 69585a7d authored by milafternoon's avatar milafternoon
Browse files

fix 5

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