X-Git-Url: http://iramuteq.org/git?p=iramuteq;a=blobdiff_plain;f=tableau.py;h=514c8cf71c0c0a3438469bd7f3e35322c206506c;hp=1deaa8e5942b3faa5364740cfc77b32840f5cfe0;hb=b19770356272772c8c8ba75f351520eca186bd19;hpb=cde1ca4b584c2fc29c45cf2e03856edff12a57d8 diff --git a/tableau.py b/tableau.py index 1deaa8e..514c8cf 100644 --- a/tableau.py +++ b/tableau.py @@ -137,7 +137,6 @@ class Tableau() : doc = ooolib.Calc(opendoc=self.parametre['filename']) doc.set_sheet_index(0) (cols, rows) = doc.get_sheet_dimensions() - print cols, rows for row in range(1, rows + 1): ligne = [] for col in range(1, cols + 1): @@ -316,7 +315,6 @@ class Tableau() : def make_table_from_classe(self, cl, la) : ln = [line[0] for line in self.classes if line[1] == cl] out = [['0' for col in la] for line in ln] - print self.actives for i, act in enumerate(la) : for j, line in enumerate(ln) : if line in self.actives[act][1] :