From dca1ea755411f297b550db3c3932729df2b09e2a Mon Sep 17 00:00:00 2001 From: eblade Date: Mon, 23 Mar 2009 23:49:09 -0400 Subject: [PATCH] fix for filterAnteBLindFold to return it's value --- pyfpdb/fpdb_simple.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyfpdb/fpdb_simple.py b/pyfpdb/fpdb_simple.py index e5d60862..5b468f94 100644 --- a/pyfpdb/fpdb_simple.py +++ b/pyfpdb/fpdb_simple.py @@ -613,7 +613,7 @@ def filterAnteBlindFold(site,hand): if foldeeName in line: hand[i] = None - hand = [line for line in hand if line] + return [line for line in hand if line] #end def filterAnteFold def stripEOLspaces(str):