r15295 - meta/scripts - remove 'THIS MESSAGE NOT LOGGED' lines. :p

Joshua Sled jsled at cvs.gnucash.org
Mon Jan 1 13:07:22 EST 2007


Author: jsled
Date: 2007-01-01 13:07:22 -0500 (Mon, 01 Jan 2007)
New Revision: 15295
Trac: http://svn.gnucash.org/trac/changeset/15295

Modified:
   meta/scripts/irc_log_htmlizer.py
Log:
remove 'THIS MESSAGE NOT LOGGED' lines. :p


Modified: meta/scripts/irc_log_htmlizer.py
===================================================================
--- meta/scripts/irc_log_htmlizer.py	2007-01-01 18:05:26 UTC (rev 15294)
+++ meta/scripts/irc_log_htmlizer.py	2007-01-01 18:07:22 UTC (rev 15295)
@@ -180,6 +180,9 @@
             line = in_file.readline()
             if line == '':
                 break
+            # stupid supybot/ChannelLogger...
+            if 'THIS MESSAGE NOT LOGGED' in line:
+                continue
             date,time,stmt = log_parse(line)
             files[date].write(date, time, stmt)
     except Exception, e:



More information about the gnucash-changes mailing list