server/utils.py
branchtls-sprint
changeset 1802 d628defebc17
parent 1138 22f634977c95
child 1910 864aa3ea0db5
--- a/server/utils.py	Thu May 14 10:24:56 2009 +0200
+++ b/server/utils.py	Thu May 14 11:38:40 2009 +0200
@@ -46,7 +46,7 @@
             for item in seqin[0]:
                 newcomb = comb + [item]     # add next item to current combination
                 # call rloop w/ remaining seqs, newcomb
-                for item in rloop(seqin[1:], newcomb):   
+                for item in rloop(seqin[1:], newcomb):
                     yield item          # seqs and newcomb
         else:                           # processing last sequence
             yield comb                  # comb finished, add to list
@@ -95,7 +95,7 @@
                 self.start()
         self.func = auto_restart_func
         self.name = func.__name__
-        
+
     def start(self):
         self._t = Timer(self.interval, self.func)
         self._t.start()
@@ -120,7 +120,7 @@
         Thread.__init__(self, target=auto_remove_func)
         self.running_threads = running_threads
         self._name = target.__name__
-        
+
     def start(self):
         self.running_threads.append(self)
         Thread.start(self)