Skip to content

Commit

Permalink
Yasta
Browse files Browse the repository at this point in the history
  • Loading branch information
Jorge C authored and Jorge C committed Apr 6, 2015
1 parent 43b1265 commit 8b0af98
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Purifier/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,10 +136,10 @@ def cleanse( theFileName ):
whereAmI = 0;

for oneTweet in theFirst:
perc = round( 100 * ( float(theFirst.index(oneTweet)) / float(len(theFirst)) ), 1 )
perc = round( 100 * ( float(theFirst.index(oneTweet)) / float(len(theFirst)) ) )
if perc != whereAmI:
whereAmI = perc
print whereAmI
print str( whereAmI ) + '%'

for someEntity in entities:
newpath = r'Output/ENT' + str( entities.index( someEntity ) )
Expand Down

0 comments on commit 8b0af98

Please sign in to comment.