[KILLFTP 4/x] paper bag fix caused iun patch 1.
This code needs replacing
This commit is contained in:
parent
14b58d6ad5
commit
161485e44e
|
@ -302,14 +302,20 @@ class Importer:
|
||||||
partial=0 #counter
|
partial=0 #counter
|
||||||
errors=0 #counter
|
errors=0 #counter
|
||||||
|
|
||||||
for i in xrange (len(self.lines)): #main loop, iterates through the lines of a file and calls the appropriate parser method
|
for i in xrange (len(self.lines)):
|
||||||
if (len(self.lines[i])<2):
|
if (len(self.lines[i])<2): #Wierd way to detect for '\r\n' or '\n'
|
||||||
endpos=i
|
endpos=i
|
||||||
hand=self.lines[startpos:endpos]
|
hand=self.lines[startpos:endpos]
|
||||||
|
|
||||||
if (len(hand[0])<2):
|
if (len(hand[0])<2):
|
||||||
hand=hand[1:]
|
hand=hand[1:]
|
||||||
|
|
||||||
|
|
||||||
|
if (len(hand)<3):
|
||||||
|
pass
|
||||||
|
#TODO: This is ugly - we didn't actually find the start of the
|
||||||
|
# hand with the outer loop so we test again...
|
||||||
|
else:
|
||||||
isTourney=fpdb_simple.isTourney(hand[0])
|
isTourney=fpdb_simple.isTourney(hand[0])
|
||||||
if not isTourney:
|
if not isTourney:
|
||||||
fpdb_simple.filterAnteBlindFold(site,hand)
|
fpdb_simple.filterAnteBlindFold(site,hand)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user