r15290 - meta/scripts - strip whitespace.
Joshua Sled
jsled at cvs.gnucash.org
Mon Jan 1 11:06:51 EST 2007
Author: jsled
Date: 2007-01-01 11:06:50 -0500 (Mon, 01 Jan 2007)
New Revision: 15290
Trac: http://svn.gnucash.org/trac/changeset/15290
Modified:
meta/scripts/irc_log_htmlizer.py
Log:
strip whitespace.
Modified: meta/scripts/irc_log_htmlizer.py
===================================================================
--- meta/scripts/irc_log_htmlizer.py 2007-01-01 16:04:45 UTC (rev 15289)
+++ meta/scripts/irc_log_htmlizer.py 2007-01-01 16:06:50 UTC (rev 15290)
@@ -33,6 +33,7 @@
'''Parses supybot.plugin.ChannelLogger-formatted lines.'''
datetime,rest = line.split(' ', 1)
date,time = datetime.split('T', 1)
+ rest = rest.strip()
return date,time,rest
More information about the gnucash-changes
mailing list