Changeset 730
- Timestamp:
- 04/29/06 02:08:36 (2 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
autowikifyplugin/trunk/tracautowikify/autowikify.py
r729 r730 45 45 # Internal methods 46 46 def _update(self): 47 pattern = r'\b(?P<autowiki>' + '|'.join( self.pages) + r')\b'47 pattern = r'\b(?P<autowiki>' + '|'.join([p for p in self.pages if len(p) >= 3]) + r')\b' 48 48 self.pages_re = pattern 49 49 WikiSystem(self.env)._compiled_rules = None
