diff --git a/scripts/lantern.py b/scripts/lantern.py index 3a195cd..b8c80a3 100644 --- a/scripts/lantern.py +++ b/scripts/lantern.py @@ -151,9 +151,9 @@ def main(): print_colors(f"[+] file exists, your Webring URL is {instance}") if 'Blacklisted' not in webpdf.columns: - webpdf.insert(4, 'Blacklisted', 'NO') + webpdf['Blacklisted'] = 'NO' - webpdf.to_csv(webpcsvfile) + webpdf.to_csv(webpcsvfile) ##### CHECK IF ARGUMENTS ARE PASSED TO ENTER PROMPT-LESS MODE ##### if len(sys.argv) == 2 and sys.argv[1] == "4": diff --git a/templates/webring-participants.csv b/templates/webring-participants.csv index ee5470d..c0d32ff 100644 --- a/templates/webring-participants.csv +++ b/templates/webring-participants.csv @@ -1 +1 @@ -Name,URL,Description,Trusted,Blacklisted,Status,Score +Name,URL,Description,Trusted,Status,Score,Blacklisted