For bug #150163, remove unnecessary validation of new_protect_filename() parameters.
authorZac Medico <zmedico@gentoo.org>
Fri, 6 Oct 2006 01:25:46 +0000 (01:25 -0000)
committerZac Medico <zmedico@gentoo.org>
Fri, 6 Oct 2006 01:25:46 +0000 (01:25 -0000)
svn path=/main/trunk/; revision=4601

pym/portage_util.py

index 9d1bb84c21acda01dbeab8cf75c79544dd3dd795..c329bc225f01fb6e8edbbae382e7c3e746de1b6b 100644 (file)
@@ -905,10 +905,6 @@ def new_protect_filename(mydest, newmd5=None):
        prot_num = -1
        last_pfile = ""
 
-       if len(mydest) == 0:
-               raise ValueError, "Empty path provided where a filename is required"
-       if mydest[-1] == os.path.sep: # XXX add better directory checking
-               raise ValueError, "Directory provided but this function requires a filename"
        if not os.path.exists(mydest):
                return mydest