diff --git a/plugins/Sourceforge.py b/plugins/Sourceforge.py index ac29a1187..bc909be53 100644 --- a/plugins/Sourceforge.py +++ b/plugins/Sourceforge.py @@ -112,9 +112,11 @@ class Sourceforge(callbacks.PrivmsgCommandAndRegexp): _assigned=re.compile(r'(Assigned To): (.+?)', _reopts) _submitted = re.compile(r'(Submitted By):
([^-]+) - ' r'(?:nobody|(Date Submitted):
([^<]+)(Priority): (.+?)', _reopts) _status = re.compile(r'(Status): (.+?)', _reopts) - _regexps =(_resolution, _assigned, _submitted, _priority, _status) + _regexps =(_resolution, _submitDate, _submitted, _assigned, _priority, + _status) _statusOpt = {'any':100, 'open':1, 'closed':2, 'deleted':3, 'pending':4} _projectURL = 'http://sourceforge.net/projects/'