extras-repoclosure rc-report.py,1.24,1.25

Michael Schwendt (mschwendt) fedora-extras-commits at redhat.com
Sat Sep 30 19:24:13 UTC 2006


Author: mschwendt

Update of /cvs/fedora/extras-repoclosure
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv22134

Modified Files:
	rc-report.py 
Log Message:
hack the search paths for now
making rc-report.py customisable is on the TODO list




Index: rc-report.py
===================================================================
RCS file: /cvs/fedora/extras-repoclosure/rc-report.py,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -r1.24 -r1.25
--- rc-report.py	29 Sep 2006 22:31:52 -0000	1.24
+++ rc-report.py	30 Sep 2006 19:24:11 -0000	1.25
@@ -11,7 +11,10 @@
 import sys
 sys.path.append('/srv/extras-push/work/extras-repoclosure')
 from PackageOwners import PackageOwners
-from RepoSupport import RepoSupport
+sys.path.append('/srv/extras-push/work/buildsys-utils/pushscript')
+import Utils, RepoSupport
+
+cfg = Utils.load_config_module('Extras')
 
 domail = True
 mailsummary = True
@@ -299,7 +302,7 @@
     summail += '\n'
 
 # Create the sorted list of all repository ids.
-rs = RepoSupport()
+rs = RepoSupport.RepoSupport(cfg)
 allrepoids = []
 for release in rs.AllReleases():
     allrepoids += rs.GenerateRepoIds(release)




More information about the scm-commits mailing list