Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Alfredredbird committed Jul 16, 2024
1 parent b81fb66 commit 80f6cea
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions brib.py
Original file line number Diff line number Diff line change
Expand Up @@ -357,12 +357,16 @@
if mkcsv == "y":
csvmaker(f"captured/{uname}.txt", f"captured/{uname}.csv", results)

print("================================")
print(f"Starting Report With ./captured/{uname}.txt")
# gets urls from file
reportUrls = extract_urls(f"./captured/{uname}.txt")
# Runs the report
report(reportUrls,uname)

doreport = input("Do You Want To Run A Report? [Y/n]: ")

if "y" in doreport.lower():
print("================================")
print(f"Starting Report With ./captured/{uname}.txt")
# gets urls from file
reportUrls = extract_urls(f"./captured/{uname}.txt")
# Runs the report
report(reportUrls,uname)


# Asks to be ran again if there are no arguments
Expand Down

0 comments on commit 80f6cea

Please sign in to comment.