Browse Source

fix issue with year argument

pull/143/head
Wesley Kerfoot 4 years ago
parent
commit
c9c680cd6a
  1. 2
      deletefb/tools/wall.py

2
deletefb/tools/wall.py

@ -22,7 +22,7 @@ def delete_posts(driver,
"""
if year is not None:
user_profile_url = "{0}/timeline?year={1}".format(user_profile_url, year)
user_profile_url = "{0}/?year={1}".format(force_mobile(user_profile_url), year)
user_profile_url = force_mobile(user_profile_url)

Loading…
Cancel
Save