Changeset 678 for confluence
- Timestamp:
- 11/04/09 14:45:26 (9 months ago)
- Files:
-
- 1 modified
-
confluence/emailfilters/twitterbouncer.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
confluence/emailfilters/twitterbouncer.py
r677 r678 54 54 sys.exit(1) 55 55 56 follow_ratio = float(following) / followers 56 if followers > 0: 57 follow_ratio = float(following) / followers 58 else: 59 follow_ratio = following 60 57 61 print user, followers, tweets, following, follow_ratio 58 62
