Author: jprantan
Date: Fri Jun 26 00:26:38 2009
New Revision: 2051
Modified:
trunk/src/robot/common/statistics.py
Log:
cleanup
Modified: trunk/src/robot/common/statistics.py
==============================================================================
--- trunk/src/robot/common/statistics.py (original)
+++ trunk/src/robot/common/statistics.py Fri Jun 26 00:26:38 2009
@@ -347,4 +347,4 @@
regexp.append(re.escape(token))
if open_parenthesis:
regexp.append(')')
- return re.compile('^%s$' % (''.join(regexp)), re.IGNORECASE)
+ return re.compile('^%s$' % ''.join(regexp), re.IGNORECASE)