Changeset 678 for confluence

Show
Ignore:
Timestamp:
11/04/09 14:45:26 (9 months ago)
Author:
confluence
Message:

fixed divide by zero bug

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • confluence/emailfilters/twitterbouncer.py

    r677 r678  
    5454    sys.exit(1) 
    5555 
    56 follow_ratio = float(following) / followers 
     56if followers > 0: 
     57    follow_ratio = float(following) / followers 
     58else: 
     59    follow_ratio = following 
     60 
    5761print user, followers, tweets, following, follow_ratio 
    5862