- Revision
- 11174
- Author
- heikki
- Date
- 2006-07-14 16:06:26 -0700 (Fri, 14 Jul 2006)
Log Message
Another case of confusing list and string.
Modified Paths
Diff
Modified: trunk/hardhat/tbhelp.cgi (11173 => 11174)
--- trunk/hardhat/tbhelp.cgi 2006-07-14 23:02:30 UTC (rev 11173) +++ trunk/hardhat/tbhelp.cgi 2006-07-14 23:06:26 UTC (rev 11174) @@ -219,7 +219,7 @@ for p in allPlatforms: s.append('\|%s\:([0-9]{14})' % p) s.append('$') - entryMatch = re.compile(s.join('')).match(entry) + entryMatch = re.compile(''.join(s)).match(entry) if not entryMatch: raise Exception, 'bad entry' file = entryMatch.group(1)
_______________________________________________ Commits mailing list [email protected] http://lists.osafoundation.org/mailman/listinfo/commits
