------------------------------------------------------------------------ r186 | werner | 2009-01-05 21:28:28 +0100 (lun 05 jan 2009) | 1 line Chemins modifiés : M /trunk/docs/versions.txt M /trunk/pygrenouille.py - when closing log window logging had been stopped ------------------------------------------------------------------------ r187 | fraggle | 2009-02-01 17:19:45 +0100 (dim 01 fév 2009) | 2 lines Chemins modifiés : M /trunk/libs/errors.py M /trunk/pygrenouille.py - Fix error handling in logger - Try to throw the tuples ftplib.all_errors as strings, useless effort (a string is a string, not a tuple, will fix this later but without the loop on the tuples keys, it's harmless for now) ------------------------------------------------------------------------ r188 | fraggle | 2009-04-02 23:35:48 +0200 (jeu 02 avr 2009) | 2 lines Chemins modifiés : M /trunk/__version__.py M /trunk/conf/pyg_log.cfg M /trunk/libs/__init__.py M /trunk/pygrenouille.py - Increment beta version - Try to hunt an 'TypeError: not all arguments converted during string formatting' in logger, but so farn it's not so good ... ------------------------------------------------------------------------ r189 | fraggle | 2009-04-05 20:06:28 +0200 (dim 05 avr 2009) | 16 lines Chemins modifiés : M /trunk/pygrenouille.py patch from Werner F. Bruhin : - First part is to prevent a PyDeadObject error I got when trying to figure the problem out - Fix the TypeError in string format : The unicode call was wrong, I just changed it to str as I think that is enough. BTW, to figure it out I hacked logging.py: if self.args: try: msg = msg % self.args except: print 'msg: %s' % msg print 'args: %s' % self.args raise return msg ------------------------------------------------------------------------