change variable name to make it more clear
authorBenjamin Mako Hill <mako@atdot.cc>
Thu, 7 May 2015 22:44:42 +0000 (15:44 -0700)
committerBenjamin Mako Hill <mako@atdot.cc>
Thu, 7 May 2015 22:44:42 +0000 (15:44 -0700)
twitter2.py

index 6d67a0f3e687c6ca911044001564525478e6b4d7..e88fe95c242c3bacde061b80dd0fe453d0acde2d 100644 (file)
@@ -13,6 +13,6 @@ print(user.screen_name + " has " + str(user.followers_count) + " followers.")
 
 print("They include these 100 people:")
 
-for friend in user.followers(count=100):
-   print(friend.screen_name)
+for follower in user.followers(count=100):
+   print(follower.screen_name)
 

Benjamin Mako Hill || Want to submit a patch?