removed two left-over debug statements
This commit is contained in:
parent
3d14c5b234
commit
8078585ce8
|
@ -131,7 +131,6 @@ for file in files:
|
||||||
|
|
||||||
for line in content:
|
for line in content:
|
||||||
for current in map(int,line.split()):
|
for current in map(int,line.split()):
|
||||||
print 'current',current,'former',former
|
|
||||||
if current == former+1 and start+reps == former+1:
|
if current == former+1 and start+reps == former+1:
|
||||||
type = 'to'
|
type = 'to'
|
||||||
reps += 1
|
reps += 1
|
||||||
|
@ -145,7 +144,6 @@ for file in files:
|
||||||
'of': '%i of %i\n'%(reps,former),
|
'of': '%i of %i\n'%(reps,former),
|
||||||
}[type]
|
}[type]
|
||||||
file['output'].write(output)
|
file['output'].write(output)
|
||||||
print 'did output',type,output
|
|
||||||
type = '.'
|
type = '.'
|
||||||
start = current
|
start = current
|
||||||
reps = 1
|
reps = 1
|
||||||
|
|
Loading…
Reference in New Issue