Skip to content

Commit f6270d7

Browse files
committed
corrected error message
1 parent 107e5ba commit f6270d7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/scrape.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def scrape(
3333

3434
failiure_count += 1
3535
if failiure_count > 20:
36-
raise Exception("Failed to log in to Drexel Connect after 5 attempts")
36+
raise Exception("Failed to log in to Drexel Connect after {} attempts".format(failiure_count))
3737

3838
reset_period *= 2
3939
time.sleep(reset_period)

0 commit comments

Comments
 (0)