Changeset 3686 for timingandestimationplugin/branches/trac0.10/scripts
- Timestamp:
- 05/16/08 08:14:45 (6 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
timingandestimationplugin/branches/trac0.10/scripts/trac-post-commit.py
r2850 r3686 169 169 options.envelope[1]) 170 170 171 command_re = re.compile(ticket_command )172 ticket_re = re.compile(ticket_prefix + '([0-9]+)'+time_pattern )171 command_re = re.compile(ticket_command, re.IGNORECASE) 172 ticket_re = re.compile(ticket_prefix + '([0-9]+)'+time_pattern, re.IGNORECASE) 173 173 174 174 class CommitHook:
