[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Re: [PATCH] hooks-scripts: fix svn2feed.py on Windows

From: Martin Furter <mf_at_rola.ch>
Date: Tue, 1 Jul 2008 00:11:26 +0200 (CEST)

On Mon, 30 Jun 2008, Niels de Vos wrote:

> + for f in changed_data:
> + desc += '<li>%s</li>\n' % re.split('\s', f, 1)[1]

Wouldn't the normal string split work too here?
       desc += '<li>%s</li>\n' % f.split(None, 1)[1]

Martin

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe_at_subversion.tigris.org
For additional commands, e-mail: dev-help_at_subversion.tigris.org
Received on 2008-07-01 00:11:41 CEST

This is an archived mail posted to the Subversion Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.