jmausolf / poshmark_sharing

BSD 3-Clause "New" or "Revised" License
111 stars 58 forks source link

Formatting and navigation #4

Open janellebakey opened 6 years ago

janellebakey commented 6 years ago

1. line 155: incorrect formatting for hour

print("[*] the share war will continue in {} minutes...current time: {}".format(int(random_loop_time/60), time.strftime('%l:%M%p %Z on %b %d, %Y')))

Should be:

print("[*] the share war will continue in {} minutes...current time: {}".format(int(random_loop_time/60), time.strftime('%I:%M%p %Z on %b %d, %Y')))

2. line 78: The users username should be used in place of poshmark_email in order to properly navigate to the sellers page

seller_page = "https://poshmark.com/closet/{}?availability=available".format(poshmark_email)
jmausolf commented 5 years ago

Hi @janellebakey, thanks for noting these issues! Both have now been resolved.