Change Bug Parsing Delimiter.
We need to move to the new reportbug libs, which are well maintained.
For now, the current pypt-offline offline bug report libs work, but they often fail.
1.1 --- a/pypt_core.py Thu Jun 04 14:45:15 2009 +0530
1.2 +++ b/pypt_core.py Thu Jun 04 14:55:23 2009 +0530
1.3 @@ -132,7 +132,7 @@
1.4
1.5 if bug_flag:
1.6 for x in sub_bugs_list:
1.7 - break_bugs = x.split( ':' )
1.8 + break_bugs = x.split( ' ' )
1.9 bug_num = string.lstrip( break_bugs[0], '#' )
1.10 try:
1.11 data = debianbts.get_report( bug_num, followups=True )