diff options
author | Zac Medico <zmedico@gentoo.org> | 2010-01-29 18:22:13 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2010-01-29 18:22:13 +0000 |
commit | 40304ebdfaa4ed89ad27edf8ac661df5eedb000f (patch) | |
tree | 532c32e04aa47fa748afa5434d843806ae9434a0 /bin/repoman | |
parent | Enable EAPI 3 and deprecate EAPI 3_pre2. (diff) | |
download | portage-idfetch-40304ebdfaa4ed89ad27edf8ac661df5eedb000f.tar.gz portage-idfetch-40304ebdfaa4ed89ad27edf8ac661df5eedb000f.tar.bz2 portage-idfetch-40304ebdfaa4ed89ad27edf8ac661df5eedb000f.zip |
Remove code for svn.IO_error and bzr.IO_error categories since they don't
exist therefore and if this code had ever executed it would have raised
a KeyError.
svn path=/main/trunk/; revision=15222
Diffstat (limited to 'bin/repoman')
-rwxr-xr-x | bin/repoman | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/bin/repoman b/bin/repoman index 5f46c15f..193cc1e8 100755 --- a/bin/repoman +++ b/bin/repoman @@ -1161,12 +1161,8 @@ for x in scanlist: if vcs == "cvs": stats["CVS/Entries.IO_error"] += 1 fails["CVS/Entries.IO_error"].append(checkdir+"/CVS/Entries") - elif vcs == "svn": - stats["svn.IO_error"] += 1 - fails["svn.IO_error"].append(checkdir) - elif vcs == "bzr": - stats["bzr.IO_error"] += 1 - fails["bzr.IO_error"].append(checkdir) + else: + raise continue mf = Manifest(checkdir, repoman_settings["DISTDIR"]) |