Update run.py to use the newer version of the get_users function
This commit is contained in:
parent
db38973a69
commit
9816272d6e
3
run.py
3
run.py
|
@ -24,7 +24,8 @@ for category in webshotslib.get_category_listings("http://community.webshots.com
|
|||
print ""
|
||||
|
||||
for listing_page in to_parse:
|
||||
for user in webshotslib.get_users(listing_page):
|
||||
results, count = webshotslib.get_users(listing_page, False)
|
||||
for user in results:
|
||||
if user not in users:
|
||||
users.append(user)
|
||||
users_count += 1
|
||||
|
|
Loading…
Reference in a new issue