status-report-scripts parseBZbugList,1.43,1.44

Christian Iseli (c4chris) fedora-extras-commits at redhat.com
Wed Jul 5 13:58:33 UTC 2006


Author: c4chris

Update of /cvs/fedora/status-report-scripts
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv31471

Modified Files:
	parseBZbugList 
Log Message:
Warn when assigned_to and reporter fields don't look like email addresses.


Index: parseBZbugList
===================================================================
RCS file: /cvs/fedora/status-report-scripts/parseBZbugList,v
retrieving revision 1.43
retrieving revision 1.44
diff -u -r1.43 -r1.44
--- parseBZbugList	25 Jun 2006 18:18:47 -0000	1.43
+++ parseBZbugList	5 Jul 2006 13:58:30 -0000	1.44
@@ -300,6 +300,10 @@
       }
       next;
     }
+    warn "assigned_to should be an email address: $F[4]"
+      if index($F[4], "@") < 0;
+    warn "reporter should be an email address: $F[5]"
+      if index($F[5], "@") < 0;
     $F[9] =~ s/["{}]//g;
     $F[1] =~ s/["]//g;
     $F[2] =~ s/["]//g;




More information about the fedora-extras-commits mailing list