Changeset 3687
- Timestamp:
- 05/16/08 08:14:57 (2 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
timingandestimationplugin/branches/trac0.11/scripts/trac-post-commit.py
r2850 r3687 169 169 '(?P<ticket>%s(?:(?:[, &]*|[ ]?and[ ]?)%s)*)' % 170 170 (support_cmds_pattern,ticket_reference, ticket_reference)) 171 command_re = re.compile(ticket_command )172 ticket_re = re.compile(ticket_prefix + '([0-9]+)' )171 command_re = re.compile(ticket_command, re.IGNORECASE) 172 ticket_re = re.compile(ticket_prefix + '([0-9]+)', re.IGNORECASE) 173 173 174 174 … … 177 177 options.envelope[1]) 178 178 179 command_re = re.compile(ticket_command )180 ticket_re = re.compile(ticket_prefix + '([0-9]+)'+time_pattern )179 command_re = re.compile(ticket_command, re.IGNORECASE) 180 ticket_re = re.compile(ticket_prefix + '([0-9]+)'+time_pattern, re.IGNORECASE) 181 181 182 182 class CommitHook:
