Skip to content
This repository was archived by the owner on Feb 10, 2025. It is now read-only.

Commit a92d008

Browse files
committed
fix bad use of reserved name (cf #372)
1 parent e0408d7 commit a92d008

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

twitter/cmdline.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -519,9 +519,9 @@ def getStatuses(self, twitter, options):
519519
lists = twitter.lists.list(screen_name=screen_name)
520520
if not lists:
521521
printNicely("This user has no lists.")
522-
for list in lists:
522+
for lst in lists:
523523
lf = get_formatter('lists', options)
524-
printNicely(lf(list))
524+
printNicely(lf(lst))
525525
return []
526526
else:
527527
return list(reversed(twitter.lists.statuses(

0 commit comments

Comments
 (0)