From d868a17bf92d3165cdf9c86744c1e13b88992808 Mon Sep 17 00:00:00 2001 From: James Vega Date: Sun, 25 Jul 2004 01:02:37 +0000 Subject: [PATCH] Added "Date Submitted" to the reported information --- plugins/Sourceforge.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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/'